From patchwork Wed Jul 30 23:32:24 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Magnus Damm X-Patchwork-Id: 4652221 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 2FCE1C0338 for ; Wed, 30 Jul 2014 23:30:14 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 59DE2201B4 for ; Wed, 30 Jul 2014 23:30:13 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 7CD2A20145 for ; Wed, 30 Jul 2014 23:30:12 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751654AbaG3XaM (ORCPT ); Wed, 30 Jul 2014 19:30:12 -0400 Received: from mail-pd0-f169.google.com ([209.85.192.169]:61930 "EHLO mail-pd0-f169.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751470AbaG3XaL (ORCPT ); Wed, 30 Jul 2014 19:30:11 -0400 Received: by mail-pd0-f169.google.com with SMTP id y10so2297239pdj.14 for ; Wed, 30 Jul 2014 16:30:10 -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=PgXhnkXyFo9BQ1ykM1KiUcJKP+teue7UoE+Y5fSkTR4=; b=DMzrIHfY0WrAJ+lXSf1jicJYQXwdmkjBY4134iicEPszZwtn5qJNj/mWcBA4nmYr7z 4g4Dr+XPQWollMZcfYwwUMYg8MCVLnOe6rn9/nbRXa6k4BANXp9OwfGqBimJKaaJCggH E0Ep2fOL3FvD14awAyDrkuZ69P9zjPM2w5gmuh16l9yib/uCh3PtCxCSfi2vxIYlpyQT x+ISfQ3g3vAWjhtFePsAWujp1gdCWGQrw9eIoNFfRwGYo/SHxSUSwIfv9EHlWsmg/EGc L6L+eeGof1EBE6twteKhog+jiRquT5aCRF/hmpoUNuTaRt43/bsp4LzxpdEQWQTaoaOW 0tqg== X-Received: by 10.70.27.161 with SMTP id u1mr8450762pdg.6.1406763010900; Wed, 30 Jul 2014 16:30:10 -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 mt1sm3487426pbb.31.2014.07.30.16.30.08 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 30 Jul 2014 16:30:09 -0700 (PDT) From: Magnus Damm To: linux-sh@vger.kernel.org Cc: Magnus Damm , horms@verge.net.au Date: Thu, 31 Jul 2014 08:32:24 +0900 Message-Id: <20140730233224.5969.39070.sendpatchset@w520> In-Reply-To: <20140730233206.5969.26669.sendpatchset@w520> References: <20140730233206.5969.26669.sendpatchset@w520> Subject: [PATCH 02/09] ARM: shmobile: Add shmobile_init_late() to KZM9G 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.5 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 Extend board specific KZM9D DT reference machine vector to include shmobile_init_late() so Suspend-to-RAM and CPUIdle are setup as expected. Signed-off-by: Magnus Damm --- arch/arm/mach-shmobile/board-kzm9g-reference.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/board-kzm9g-reference.c +++ work/arch/arm/mach-shmobile/board-kzm9g-reference.c 2014-07-31 07:41:03.000000000 +0900 @@ -54,5 +54,6 @@ DT_MACHINE_START(KZM9G_DT, "kzm9g-refere .init_early = sh73a0_init_delay, .nr_irqs = NR_IRQS_LEGACY, .init_machine = kzm_init, + .init_late = shmobile_init_late, .dt_compat = kzm9g_boards_compat_dt, MACHINE_END