From patchwork Wed Aug 20 13:02:36 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Magnus Damm X-Patchwork-Id: 4751061 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 9F5E4C0338 for ; Wed, 20 Aug 2014 13:00:30 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 117D520136 for ; Wed, 20 Aug 2014 13:00:25 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 0122A2012F for ; Wed, 20 Aug 2014 13:00:24 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752975AbaHTNAX (ORCPT ); Wed, 20 Aug 2014 09:00:23 -0400 Received: from mail-pd0-f170.google.com ([209.85.192.170]:34679 "EHLO mail-pd0-f170.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752959AbaHTNAW (ORCPT ); Wed, 20 Aug 2014 09:00:22 -0400 Received: by mail-pd0-f170.google.com with SMTP id g10so11857298pdj.29 for ; Wed, 20 Aug 2014 06:00:19 -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=IfQb499WSZlgIQstAKPUOrEEVK6QrplXg96KCCBbX7I=; b=B7yKmiCRSkDgrfcsAIGzfc12qW3+fx+wXO92Ae4wWgP3lTDszbTEzA+2kQSTg74ZN4 chGY/uqh5+OYqYfX8ZeptshZtu01zz2sruWSwfh8vpqbAxXv3QxETXrsz+von+TgXkGM fLhUmPupRmgA4/sFvPyNOjAGLXFhoe/O+q3gBPI1CwEw9bsycFhwzox3J6uV2o0zNc/y dUje0s04B7jitQ7oTUodI+N4jgcr9RCSToxOxhy4uDXi1xIzN4ve0/Y7ym/Jbgwb2QYk ey3YakCxPMXqqjAb6JFusTzzCkrdhhO6GUP15KdO8AqvODv1a3RsF6/fza2azZggtt0p NPiA== X-Received: by 10.66.122.99 with SMTP id lr3mr25776145pab.0.1408539619446; Wed, 20 Aug 2014 06:00:19 -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 nw14sm32237729pab.15.2014.08.20.06.00.17 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 20 Aug 2014 06:00:18 -0700 (PDT) From: Magnus Damm To: linux-sh@vger.kernel.org Cc: Magnus Damm , horms@verge.net.au Date: Wed, 20 Aug 2014 22:02:36 +0900 Message-Id: <20140820130236.32075.74067.sendpatchset@w520> In-Reply-To: <20140820130201.32075.45257.sendpatchset@w520> References: <20140820130201.32075.45257.sendpatchset@w520> Subject: [PATCH 04/10] ARM: shmobile: sh7372: 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 sh7372 SoC support code to use shmobile_init_delay() together with CPU Frequency settings from the DTS. Get rid of the C code version. Signed-off-by: Magnus Damm --- arch/arm/mach-shmobile/setup-sh7372.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-sh7372.c +++ work/arch/arm/mach-shmobile/setup-sh7372.c 2014-08-20 21:01:39.000000000 +0900 @@ -984,7 +984,7 @@ void __init sh7372_add_early_devices(voi void __init sh7372_add_early_devices_dt(void) { - shmobile_setup_delay(800, 1, 3); /* Cortex-A8 @ 800MHz */ + shmobile_init_delay(); sh7372_add_early_devices(); }