From patchwork Wed Jul 30 23:32:50 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Magnus Damm X-Patchwork-Id: 4652251 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 2E607C0338 for ; Wed, 30 Jul 2014 23:30:41 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 743C720145 for ; Wed, 30 Jul 2014 23:30:40 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id B0B66200F0 for ; Wed, 30 Jul 2014 23:30:39 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752362AbaG3Xai (ORCPT ); Wed, 30 Jul 2014 19:30:38 -0400 Received: from mail-pa0-f45.google.com ([209.85.220.45]:54659 "EHLO mail-pa0-f45.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751654AbaG3Xah (ORCPT ); Wed, 30 Jul 2014 19:30:37 -0400 Received: by mail-pa0-f45.google.com with SMTP id eu11so2413876pac.32 for ; Wed, 30 Jul 2014 16:30:37 -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=hm9BRA9Va0IDojWfp56FgsdRJxXkehs7QJ0piRq00WQ=; b=PeOu5ae5faER6OQaKOlo16PMKWg6F4doF5hAcseLxZnnt6HwRyAahQKL21eeYpJpa0 5DUGy3kfWQ+15P/j2U2bP9fgOQTgkUiNCdDy8ovPZMpeYlG+eN7A9+SR668RDSOKIp23 2ebHIAy2AmkufeBuuAMu5QiLpj0pLNU550/YNlb/tN7nyhY32l+DiKJwCnY5RqX6IpmN kkZpki145wrNdt3Td9zPCkeZ99rThNXy+JQSOkgBz4IRl++1u9H1B5SjUYyf24dFe6tI xgXR6hHNmXXmB68c8lQwnUr3wVSUFZIZt0nTGloFILhnaE7pXXLjEtzXrAjZmndKwyS/ A5GA== X-Received: by 10.70.128.17 with SMTP id nk17mr2249957pdb.89.1406763037116; Wed, 30 Jul 2014 16:30:37 -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 b9sm5330577pdo.3.2014.07.30.16.30.35 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 30 Jul 2014 16:30:36 -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:50 +0900 Message-Id: <20140730233250.5969.67116.sendpatchset@w520> In-Reply-To: <20140730233206.5969.26669.sendpatchset@w520> References: <20140730233206.5969.26669.sendpatchset@w520> Subject: [PATCH 05/09] ARM: shmobile: Fix shmobile_init_late() on r8a7778 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 Fix r8a7778 SoC machine vector to include shmobile_init_late() so Suspend-to-RAM and CPUIdle are setup and platform devices are omitted as expected. Signed-off-by: Magnus Damm --- arch/arm/mach-shmobile/setup-r8a7778.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- 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-r8a7778.c +++ work/arch/arm/mach-shmobile/setup-r8a7778.c 2014-07-31 08:26:09.000000000 +0900 @@ -610,8 +610,8 @@ static const char *r8a7778_compat_dt[] _ DT_MACHINE_START(R8A7778_DT, "Generic R8A7778 (Flattened Device Tree)") .init_early = r8a7778_init_delay, .init_irq = r8a7778_init_irq_dt, + .init_late = shmobile_init_late, .dt_compat = r8a7778_compat_dt, - .init_late = r8a7778_init_late, MACHINE_END #endif /* CONFIG_USE_OF */