From patchwork Wed Aug 20 13:03:30 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Magnus Damm X-Patchwork-Id: 4751111 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 3B31EC0338 for ; Wed, 20 Aug 2014 13:01:20 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 1A861200E7 for ; Wed, 20 Aug 2014 13:01:19 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id D5DF720155 for ; Wed, 20 Aug 2014 13:01:14 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752686AbaHTNBO (ORCPT ); Wed, 20 Aug 2014 09:01:14 -0400 Received: from mail-pd0-f171.google.com ([209.85.192.171]:33495 "EHLO mail-pd0-f171.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752387AbaHTNBO (ORCPT ); Wed, 20 Aug 2014 09:01:14 -0400 Received: by mail-pd0-f171.google.com with SMTP id z10so11864002pdj.16 for ; Wed, 20 Aug 2014 06:01:13 -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=FeExTCixcr+92gUyld9p0YAiHYrAhWx/eUB9InCDNEk=; b=ECkYQUkf1wZKjYiMI7J52bLRht6X0MUt2DownsDdvQeZc8lw9nBwa26UyCJ/Q/6Rmi eM/wlBygnBceF1sNB7giMPICFmxuU60pCHk27HVGCJ667PRo8wjHwlT3U6NQRgFnew8p Pq55V9cL1JvZlrRTahswdYHmZsDQUk5Il8XjWa0vBCe00b+TpGDd8QtBAcQqT/eQCSfu JgSdFh5a+wG4c+C5SU/1JHuqLz7UGEGQePwPQ6tEJyWLJEDk92uWXplRS2xncOsmhAIy QL5dFza6lq4ph7FzMSasyAQVPFxH6cuwP/boPVnkfysIXKGZBJcogzypCbGV+Lqafomi LrgQ== X-Received: by 10.70.130.195 with SMTP id og3mr50615275pdb.59.1408539673344; Wed, 20 Aug 2014 06:01:13 -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 k3sm17928425pdj.3.2014.08.20.06.01.11 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 20 Aug 2014 06:01:12 -0700 (PDT) From: Magnus Damm To: linux-sh@vger.kernel.org Cc: Magnus Damm , horms@verge.net.au Date: Wed, 20 Aug 2014 22:03:30 +0900 Message-Id: <20140820130330.32075.37853.sendpatchset@w520> In-Reply-To: <20140820130201.32075.45257.sendpatchset@w520> References: <20140820130201.32075.45257.sendpatchset@w520> Subject: [PATCH 10/10] ARM: shmobile: kzm9g: Use shmobile_init_delay() 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 Adjust the KZM9G board support code to use shmobile_init_delay() together with CPU Frequency settings from the DTS. Signed-off-by: Magnus Damm --- arch/arm/mach-shmobile/board-kzm9g-reference.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/board-kzm9g-reference.c +++ work/arch/arm/mach-shmobile/board-kzm9g-reference.c 2014-08-20 21:14:41.000000000 +0900 @@ -51,7 +51,7 @@ static const char *kzm9g_boards_compat_d DT_MACHINE_START(KZM9G_DT, "kzm9g-reference") .smp = smp_ops(sh73a0_smp_ops), .map_io = sh73a0_map_io, - .init_early = sh73a0_init_delay, + .init_early = shmobile_init_delay, .init_machine = kzm_init, .init_late = shmobile_init_late, .dt_compat = kzm9g_boards_compat_dt,