From patchwork Thu Jun 5 05:16:09 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Magnus Damm X-Patchwork-Id: 4303101 Return-Path: X-Original-To: patchwork-linux-sh@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 4C213BEEA7 for ; Thu, 5 Jun 2014 05:14:13 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 90C3C201F7 for ; Thu, 5 Jun 2014 05:14:12 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id AF7A120179 for ; Thu, 5 Jun 2014 05:14:11 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752278AbaFEFOI (ORCPT ); Thu, 5 Jun 2014 01:14:08 -0400 Received: from mail-pd0-f173.google.com ([209.85.192.173]:59362 "EHLO mail-pd0-f173.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752123AbaFEFOG (ORCPT ); Thu, 5 Jun 2014 01:14:06 -0400 Received: by mail-pd0-f173.google.com with SMTP id v10so550311pde.32 for ; Wed, 04 Jun 2014 22:14:06 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:date:message-id:in-reply-to:references:subject; bh=5N5ExnvJ1YRcZTIENcZINMGdJDgyeVwmmyh8P3We0SM=; b=AKAWk25jKR9jOo9FauOs1CQS2PDoZLYQQE7yuctCT/IR7obuHH1OaWygKdsBsUP/DA 2ySMsr8ckmTHDgjgBPUm283Po/wJNCQj2sk8I5JIH9NT47PL4CJUP9OI2Vhr6GVizBAv egsX2O+qabiAmxQ/1EzsKX3yAmjwIedhbiTOTkoiOyvZXmq0p7QcxJtyLlBB2lE24Dkh xHGW0hEDiZBHZR/kvebGepBv73pHkz+hmjdPySXocp3azzLW/YF6yoZkjZax+c95pyJ9 sfovLXEOZgG9z9BL8F0AFHag+yb64LQXr5C2bXeCo0E6ikMeBMs23boTi5W+YLb9mYkb w4xQ== X-Received: by 10.68.216.101 with SMTP id op5mr72973287pbc.148.1401945245955; Wed, 04 Jun 2014 22:14:05 -0700 (PDT) Received: from [127.0.0.1] (s214090.ppp.asahi-net.or.jp. [220.157.214.90]) by mx.google.com with ESMTPSA id h5sm17626496pbw.81.2014.06.04.22.14.04 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 04 Jun 2014 22:14:05 -0700 (PDT) From: Magnus Damm To: linux-sh@vger.kernel.org Cc: Magnus Damm , horms@verge.net.au, keita.kobayashi.ym@renesas.com Date: Thu, 05 Jun 2014 14:16:09 +0900 Message-Id: <20140605051609.18075.66159.sendpatchset@w520> In-Reply-To: <20140605051505.18075.76727.sendpatchset@w520> References: <20140605051505.18075.76727.sendpatchset@w520> Subject: [PATCH 08/08] ARM: shmobile: Use shmobile_init_late on r8a7790 DT-only Sender: linux-sh-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-sh@vger.kernel.org X-Spam-Status: No, score=-7.4 required=5.0 tests=BAYES_00, DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED, FREEMAIL_FROM, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, T_DKIM_INVALID, UNPARSEABLE_RELAY autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP From: Magnus Damm Tie in shmobile_init_late for the DT-only r8a7790 SoC Multiplatform support code. This will make sure that Suspend-to-RAM, CPUIdle and CPUFreq get initialized. Signed-off-by: Magnus Damm --- arch/arm/mach-shmobile/setup-r8a7790.c | 1 + 1 file changed, 1 insertion(+) -- To unsubscribe from this list: send the line "unsubscribe linux-sh" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html --- 0008/arch/arm/mach-shmobile/setup-r8a7790.c +++ work/arch/arm/mach-shmobile/setup-r8a7790.c 2014-06-05 12:55:21.000000000 +0900 @@ -325,6 +325,7 @@ DT_MACHINE_START(R8A7790_DT, "Generic R8 .init_early = shmobile_init_delay, .init_time = rcar_gen2_timer_init, .init_machine = r8a7790_init_machine, + .init_late = shmobile_init_late, .dt_compat = r8a7790_boards_compat_dt, MACHINE_END #endif /* CONFIG_USE_OF */