From patchwork Fri Jun 6 06:13:47 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Magnus Damm X-Patchwork-Id: 4309981 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 E3C99BEEAA for ; Fri, 6 Jun 2014 06:11:53 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 5B93920200 for ; Fri, 6 Jun 2014 06:11:49 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id AD5A2201F7 for ; Fri, 6 Jun 2014 06:11:44 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1750874AbaFFGLo (ORCPT ); Fri, 6 Jun 2014 02:11:44 -0400 Received: from mail-pb0-f43.google.com ([209.85.160.43]:58042 "EHLO mail-pb0-f43.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750740AbaFFGLn (ORCPT ); Fri, 6 Jun 2014 02:11:43 -0400 Received: by mail-pb0-f43.google.com with SMTP id up15so2215179pbc.16 for ; Thu, 05 Jun 2014 23:11:43 -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=zg+SUtAHbp/kpxxodXBUDcZJMNA/vCyZhw+N7fri0OQ=; b=skd4FEGdHbJhvUsMH5nCRsYiXZHdNreOIGKXjGbgxa2s7xOsyIBJ/H5q5fQXvc8g4c V0EPKqpbtzsVjme56mR25Wrzpp3IMHtZZZnpG1Y4ZC23XX6WbbJR3K/XA0BIvasFGzVU Oe7DwFJTEpEbn2QkpkUTZneM2OQP7gJzuhKFfdo2E6/qEwpVWriCWsiv0KY+7T4cQVXv FZjE/m+7NQvk8ssoC5HU/wdNUrjgX3UQreM1kPaaAx6U7LyWHN9ZsndRmBUTpo3yoljo OMFNBpsFLnxGbOwDCngbusJ1gF2PkFe5hVjwvty0D0b0m4r0x4onmKfGcPfhwpdMNqXR yOgA== X-Received: by 10.68.226.105 with SMTP id rr9mr4788091pbc.161.1402035103272; Thu, 05 Jun 2014 23:11:43 -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 fx5sm31257459pbb.62.2014.06.05.23.11.41 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 05 Jun 2014 23:11:42 -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:13:47 +0900 Message-Id: <20140606061347.13388.53582.sendpatchset@w520> Subject: [PATCH v2] 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 --- Changes since V1: - Broke out patch from larger series 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 --- 0001/arch/arm/mach-shmobile/setup-r8a7790.c +++ work/arch/arm/mach-shmobile/setup-r8a7790.c 2014-06-06 14:39:09.000000000 +0900 @@ -318,6 +318,7 @@ DT_MACHINE_START(R8A7790_DT, "Generic R8 .smp = smp_ops(r8a7790_smp_ops), .init_early = shmobile_init_delay, .init_time = rcar_gen2_timer_init, + .init_late = shmobile_init_late, .dt_compat = r8a7790_boards_compat_dt, MACHINE_END #endif /* CONFIG_USE_OF */