From patchwork Fri Jun 6 06:15:23 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Magnus Damm X-Patchwork-Id: 4309991 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 BA0DEBEEAA for ; Fri, 6 Jun 2014 06:13:29 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 34CBD2020F for ; Fri, 6 Jun 2014 06:13:25 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 8D3462020A for ; Fri, 6 Jun 2014 06:13:20 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751376AbaFFGNU (ORCPT ); Fri, 6 Jun 2014 02:13:20 -0400 Received: from mail-pb0-f50.google.com ([209.85.160.50]:41132 "EHLO mail-pb0-f50.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751233AbaFFGNT (ORCPT ); Fri, 6 Jun 2014 02:13:19 -0400 Received: by mail-pb0-f50.google.com with SMTP id ma3so2226170pbc.9 for ; Thu, 05 Jun 2014 23:13:19 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:date:message-id:subject; bh=vxxjHBApl4cIwmIFE2eYsBH/krNOh6u0lJxqK5doq6I=; b=r2YqJeu+bxKiSTv1ajmhbZTAt1zbVYHyE//UQNVt4l55uckhMBgBxOnE6EsNMdVKaL u/bmPKRzIkJ7KO3+PwgbwVjoI0JydDlJbvrM2HLk6OGgIq5Tcuzm/erycL0iEtvpK6nU SNTOlj61CnhuyWF3Or9fUb90DWasRR6PYPJ/Wh834cWIhqItTL1BtP1tF9ELheVRyBED xIbHkL9eVPxKgnJvBA8QyvnJc+Y41h8Fnze1cErToX02PMa+z2MkcqvJeGG1jWBmfJRA Y6A4sWxBiD9cT1Y43aazx9ZfnuzJUjjUIg24jHEZF5r5i0bQ7TexMdw7YGKyAwBd3IJy SbNw== X-Received: by 10.68.226.197 with SMTP id ru5mr5077514pbc.77.1402035199515; Thu, 05 Jun 2014 23:13:19 -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 bz4sm31347535pbb.12.2014.06.05.23.13.17 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 05 Jun 2014 23:13:18 -0700 (PDT) From: Magnus Damm To: linux-sh@vger.kernel.org Cc: Magnus Damm , horms@verge.net.au, geert@linux-m68k.org Date: Fri, 06 Jun 2014 15:15:23 +0900 Message-Id: <20140606061523.13394.1268.sendpatchset@w520> Subject: [PATCH] ARM: shmobile: Use shmobile_init_late() on r8a7791 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 r8a7791 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-r8a7791.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 --- 0001/arch/arm/mach-shmobile/setup-r8a7791.c +++ work/arch/arm/mach-shmobile/setup-r8a7791.c 2014-06-06 14:41:04.000000000 +0900 @@ -217,6 +217,7 @@ DT_MACHINE_START(R8A7791_DT, "Generic R8 .smp = smp_ops(r8a7791_smp_ops), .init_early = shmobile_init_delay, .init_time = rcar_gen2_timer_init, + .init_late = shmobile_init_late, .dt_compat = r8a7791_boards_compat_dt, MACHINE_END #endif /* CONFIG_USE_OF */