From patchwork Thu Nov 10 04:54:13 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Richard Zhao X-Patchwork-Id: 5015 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id 2A20423E01 for ; Thu, 10 Nov 2011 04:55:06 +0000 (UTC) Received: from mail-fx0-f52.google.com (mail-fx0-f52.google.com [209.85.161.52]) by fiordland.canonical.com (Postfix) with ESMTP id 1894DA181F0 for ; Thu, 10 Nov 2011 04:55:06 +0000 (UTC) Received: by mail-fx0-f52.google.com with SMTP id n26so3473983faa.11 for ; Wed, 09 Nov 2011 20:55:06 -0800 (PST) Received: by 10.152.109.199 with SMTP id hu7mr3554342lab.16.1320900905859; Wed, 09 Nov 2011 20:55:05 -0800 (PST) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.152.3.196 with SMTP id e4cs8559lae; Wed, 9 Nov 2011 20:55:05 -0800 (PST) Received: by 10.68.2.135 with SMTP id 7mr11267806pbu.83.1320900903530; Wed, 09 Nov 2011 20:55:03 -0800 (PST) Received: from TX2EHSOBE002.bigfish.com (tx2ehsobe001.messaging.microsoft.com. [65.55.88.11]) by mx.google.com with ESMTPS id o3si9372474pbc.121.2011.11.09.20.55.02 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 09 Nov 2011 20:55:03 -0800 (PST) Received-SPF: neutral (google.com: 65.55.88.11 is neither permitted nor denied by best guess record for domain of richard.zhao@linaro.org) client-ip=65.55.88.11; Authentication-Results: mx.google.com; spf=neutral (google.com: 65.55.88.11 is neither permitted nor denied by best guess record for domain of richard.zhao@linaro.org) smtp.mail=richard.zhao@linaro.org Received: from mail191-tx2-R.bigfish.com (10.9.14.240) by TX2EHSOBE002.bigfish.com (10.9.40.22) with Microsoft SMTP Server id 14.1.225.22; Thu, 10 Nov 2011 04:54:37 +0000 Received: from mail191-tx2 (localhost.localdomain [127.0.0.1]) by mail191-tx2-R.bigfish.com (Postfix) with ESMTP id A73B5184838B; Thu, 10 Nov 2011 04:54:51 +0000 (UTC) X-SpamScore: 0 X-BigFish: VS0(zzzz1202hzz8275dhz2dh87h2a8h668h839h62h) X-Spam-TCS-SCL: 1:0 X-Forefront-Antispam-Report: CIP:70.37.183.190; KIP:(null); UIP:(null); IPVD:NLI; H:mail.freescale.net; RD:none; EFVD:NLI X-FB-DOMAIN-IP-MATCH: fail Received: from mail191-tx2 (localhost.localdomain [127.0.0.1]) by mail191-tx2 (MessageSwitch) id 1320900891223231_14380; Thu, 10 Nov 2011 04:54:51 +0000 (UTC) Received: from TX2EHSMHS047.bigfish.com (unknown [10.9.14.243]) by mail191-tx2.bigfish.com (Postfix) with ESMTP id 2EDE6B8056; Thu, 10 Nov 2011 04:54:51 +0000 (UTC) Received: from mail.freescale.net (70.37.183.190) by TX2EHSMHS047.bigfish.com (10.9.99.147) with Microsoft SMTP Server (TLS) id 14.1.225.22; Thu, 10 Nov 2011 04:54:34 +0000 Received: from az33smr01.freescale.net (10.64.34.199) by 039-SN1MMR1-001.039d.mgd.msft.net (10.84.1.13) with Microsoft SMTP Server id 14.1.339.2; Wed, 9 Nov 2011 22:54:58 -0600 Received: from b20223-02.ap.freescale.net (b20223-02.ap.freescale.net [10.192.242.124]) by az33smr01.freescale.net (8.13.1/8.13.0) with ESMTP id pAA4sZAj016053; Wed, 9 Nov 2011 22:54:55 -0600 (CST) From: Richard Zhao To: CC: , , , , , , , Richard Zhao Subject: [PATCH 8/9] ARM: mx31moboard: convert to clk_prepare/clk_unprepare Date: Thu, 10 Nov 2011 12:54:13 +0800 Message-ID: <1320900854-13031-8-git-send-email-richard.zhao@linaro.org> X-Mailer: git-send-email 1.7.5.4 In-Reply-To: <1320900854-13031-1-git-send-email-richard.zhao@linaro.org> References: <1320900854-13031-1-git-send-email-richard.zhao@linaro.org> MIME-Version: 1.0 X-OriginatorOrg: sigmatel.com Signed-off-by: Richard Zhao --- arch/arm/mach-imx/mach-mx31moboard.c | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/arch/arm/mach-imx/mach-mx31moboard.c b/arch/arm/mach-imx/mach-mx31moboard.c index 07034f4..1e6e3db 100644 --- a/arch/arm/mach-imx/mach-mx31moboard.c +++ b/arch/arm/mach-imx/mach-mx31moboard.c @@ -504,8 +504,10 @@ static void mx31moboard_poweroff(void) { struct clk *clk = clk_get_sys("imx2-wdt.0", NULL); - if (!IS_ERR(clk)) + if (!IS_ERR(clk)) { + clk_prepare(clk); clk_enable(clk); + } mxc_iomux_mode(MX31_PIN_WATCHDOG_RST__WATCHDOG_RST);