From patchwork Wed Jul 30 23:45:00 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Magnus Damm X-Patchwork-Id: 4652301 Return-Path: X-Original-To: patchwork-linux-sh@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork1.web.kernel.org (Postfix) with ESMTP id DD5FF9F32F for ; Wed, 30 Jul 2014 23:42:49 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 10634201BC for ; Wed, 30 Jul 2014 23:42:49 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 307ED201B4 for ; Wed, 30 Jul 2014 23:42:48 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751721AbaG3Xmr (ORCPT ); Wed, 30 Jul 2014 19:42:47 -0400 Received: from mail-pd0-f180.google.com ([209.85.192.180]:48845 "EHLO mail-pd0-f180.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751605AbaG3Xmr (ORCPT ); Wed, 30 Jul 2014 19:42:47 -0400 Received: by mail-pd0-f180.google.com with SMTP id y13so2309161pdi.39 for ; Wed, 30 Jul 2014 16:42:47 -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=uuQe/s5u0y4kyxBYH57KfTMi5dZvh184iHgYeXdNjxc=; b=cgd/fRTEdkajdghg6HGmFCnNjPgtgDvrF228i3XSttg6Hd0ZtcJpGMxm240R91jJXb AQfpOwoe0X2GqOMBO1w93VyxDOHf3lBOUD6f8Gv/i6txmotKFCVo3poP1K9fKcNq85EV DxN+3nYLSdpEPwo2LnYFfOcI+Z0bbQPkt68YqYYj0h8hby5+/hBAFpUPpl7s4YHAB3In ap9kfk6xQGmYPB1Aa4MB56jKIrsJDNBsc1vvPdMw4WLJtqSQcK8LTS0oaCUDgOR+rJsz OSvJ6E4st5Ot8/0TYlQUwsGMw6pg8P9NjsPL3GrE5dMatPqYALLSx3Uz8a07+4pFteg6 QswQ== X-Received: by 10.68.232.2 with SMTP id tk2mr298635pbc.65.1406763767116; Wed, 30 Jul 2014 16:42:47 -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 fl15sm5319204pdb.96.2014.07.30.16.42.44 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 30 Jul 2014 16:42:45 -0700 (PDT) From: Magnus Damm To: linux-sh@vger.kernel.org Cc: Magnus Damm , horms@verge.net.au Date: Thu, 31 Jul 2014 08:45:00 +0900 Message-Id: <20140730234500.18995.49199.sendpatchset@w520> Subject: [PATCH] ARM: shmobile: Use shmobile_init_delay() on APE6EVM 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 The r8a73a4 DTS includes CPU Frequency information so adjust the APE6EVM board code to use shmobile_init_delay() instead of relying on CPU Frequency information included in r8a73a4_init_delay() that is specified in C. Signed-off-by: Magnus Damm --- Written on top of renesas-devel-v3.16-rc7-20140729 and [PATCH 00/09] ARM: shmobile: Consistent use of shmobile_init_late() arch/arm/mach-shmobile/board-ape6evm-reference.c | 2 +- arch/arm/mach-shmobile/board-ape6evm.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) -- 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 --- 0002/arch/arm/mach-shmobile/board-ape6evm-reference.c +++ work/arch/arm/mach-shmobile/board-ape6evm-reference.c 2014-07-31 08:38:10.000000000 +0900 @@ -59,7 +59,7 @@ static const char *ape6evm_boards_compat }; DT_MACHINE_START(APE6EVM_DT, "ape6evm") - .init_early = r8a73a4_init_early, + .init_early = shmobile_init_delay, .init_machine = ape6evm_add_standard_devices, .init_late = shmobile_init_late, .dt_compat = ape6evm_boards_compat_dt, --- 0002/arch/arm/mach-shmobile/board-ape6evm.c +++ work/arch/arm/mach-shmobile/board-ape6evm.c 2014-07-31 08:39:22.000000000 +0900 @@ -283,7 +283,7 @@ static const char *ape6evm_boards_compat }; DT_MACHINE_START(APE6EVM_DT, "ape6evm") - .init_early = r8a73a4_init_early, + .init_early = shmobile_init_delay, .init_machine = ape6evm_add_standard_devices, .init_late = shmobile_init_late, .dt_compat = ape6evm_boards_compat_dt,