From patchwork Wed Jul 30 23:33:26 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Magnus Damm X-Patchwork-Id: 4652291 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 283F3C0338 for ; Wed, 30 Jul 2014 23:31:16 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 65DD1201B4 for ; Wed, 30 Jul 2014 23:31:15 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 898D020145 for ; Wed, 30 Jul 2014 23:31:13 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751713AbaG3XbN (ORCPT ); Wed, 30 Jul 2014 19:31:13 -0400 Received: from mail-pa0-f43.google.com ([209.85.220.43]:42229 "EHLO mail-pa0-f43.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751260AbaG3XbM (ORCPT ); Wed, 30 Jul 2014 19:31:12 -0400 Received: by mail-pa0-f43.google.com with SMTP id lf10so2426301pab.30 for ; Wed, 30 Jul 2014 16:31:12 -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=FpQsseNJ5tk4XNlGU5QTFoznJw7dB1mv3vUFzwM5md0=; b=BRTjqWT9qZhfgzmvnjSZIM2dmbA3NBFLR9AdUYGIdxhwJ5e7C+IZwadZs1wKH+A9ot q5X0N+jIEvaRJJ1VrXkXvuiQJpBJsqrhT29cVOfRnCljK2OsGdmPzwsyS0BWkctlxuOn PdYSBaRjhMkAfmA6qm4d5JyYKA8CooaZhGBsI+taPkSUt3yrbNU/R7K2r5h88B+SwOJV 5Q1WPyWcHPXf9E1iV9sd31TzJjRZhJJY7pmrKxaJPhzGwIDQfEd7zEzzLukFDMfqj75Y zN960yt2tz2xHvh6R5dh2JFgSjrT6V88JaOuo3G1J8P7bizSv63sCZkhTlh/Io/h/YuU c0Fw== X-Received: by 10.66.229.98 with SMTP id sp2mr255539pac.95.1406763072467; Wed, 30 Jul 2014 16:31:12 -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 pl10sm3482879pbb.56.2014.07.30.16.31.10 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 30 Jul 2014 16:31:11 -0700 (PDT) From: Magnus Damm To: linux-sh@vger.kernel.org Cc: Magnus Damm , horms@verge.net.au Date: Thu, 31 Jul 2014 08:33:26 +0900 Message-Id: <20140730233326.5969.46700.sendpatchset@w520> In-Reply-To: <20140730233206.5969.26669.sendpatchset@w520> References: <20140730233206.5969.26669.sendpatchset@w520> Subject: [PATCH 09/09] ARM: shmobile: Add shmobile_init_late() to r7s72100 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 r7s72100 SoC 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/setup-r7s72100.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-r7s72100.c +++ work/arch/arm/mach-shmobile/setup-r7s72100.c 2014-07-31 08:07:34.000000000 +0900 @@ -31,5 +31,6 @@ static const char *r7s72100_boards_compa DT_MACHINE_START(R7S72100_DT, "Generic R7S72100 (Flattened Device Tree)") .init_early = shmobile_init_delay, + .init_late = shmobile_init_late, .dt_compat = r7s72100_boards_compat_dt, MACHINE_END