From patchwork Fri Nov 11 01:10:23 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Richard Zhao X-Patchwork-Id: 5047 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 BBB9F23E01 for ; Fri, 11 Nov 2011 01:11:44 +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 AFF58A1831F for ; Fri, 11 Nov 2011 01:11:44 +0000 (UTC) Received: by mail-fx0-f52.google.com with SMTP id n26so5072572faa.11 for ; Thu, 10 Nov 2011 17:11:44 -0800 (PST) Received: by 10.152.104.1 with SMTP id ga1mr5673656lab.40.1320973904480; Thu, 10 Nov 2011 17:11:44 -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.40.7 with SMTP id t7cs30854lak; Thu, 10 Nov 2011 17:11:44 -0800 (PST) Received: by 10.227.207.205 with SMTP id fz13mr6256402wbb.0.1320973902985; Thu, 10 Nov 2011 17:11:42 -0800 (PST) Received: from AM1EHSOBE001.bigfish.com (mail-am1.bigfish.com. [213.199.180.138]) by mx.google.com with ESMTPS id fu6si748284wbb.50.2011.11.10.17.11.42 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 10 Nov 2011 17:11:42 -0800 (PST) Received-SPF: neutral (google.com: 213.199.180.138 is neither permitted nor denied by best guess record for domain of richard.zhao@linaro.org) client-ip=213.199.180.138; Authentication-Results: mx.google.com; spf=neutral (google.com: 213.199.180.138 is neither permitted nor denied by best guess record for domain of richard.zhao@linaro.org) smtp.mail=richard.zhao@linaro.org Received: from mail7-am1-R.bigfish.com (10.3.201.240) by AM1EHSOBE001.bigfish.com (10.3.204.21) with Microsoft SMTP Server id 14.1.225.22; Fri, 11 Nov 2011 01:11:16 +0000 Received: from mail7-am1 (localhost [127.0.0.1]) by mail7-am1-R.bigfish.com (Postfix) with ESMTP id 5070A14016A; Fri, 11 Nov 2011 01:11:49 +0000 (UTC) X-SpamScore: 0 X-BigFish: VS0(zzzz1202hzz8275dhz2dh87h2a8h668h839h) X-Forefront-Antispam-Report: CIP:70.37.183.190; KIP:(null); UIP:(null); IPV:NLI; H:mail.freescale.net; RD:none; EFVD:NLI X-FB-SS: 13, X-FB-DOMAIN-IP-MATCH: fail Received: from mail7-am1 (localhost.localdomain [127.0.0.1]) by mail7-am1 (MessageSwitch) id 1320973909161615_13691; Fri, 11 Nov 2011 01:11:49 +0000 (UTC) Received: from AM1EHSMHS008.bigfish.com (unknown [10.3.201.249]) by mail7-am1.bigfish.com (Postfix) with ESMTP id 200C9680043; Fri, 11 Nov 2011 01:11:49 +0000 (UTC) Received: from mail.freescale.net (70.37.183.190) by AM1EHSMHS008.bigfish.com (10.3.207.108) with Microsoft SMTP Server (TLS) id 14.1.225.22; Fri, 11 Nov 2011 01:11:15 +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; Thu, 10 Nov 2011 19:11:40 -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 pAB1B4bQ016594; Thu, 10 Nov 2011 19:11:36 -0600 (CST) From: Richard Zhao To: , , , , CC: , , , , , , , Richard Zhao Subject: [PATCH V2 08/14] ARM: pm-imx5: add clk_prepare/clk_unprepare Date: Fri, 11 Nov 2011 09:10:23 +0800 Message-ID: <1320973829-4388-9-git-send-email-richard.zhao@linaro.org> X-Mailer: git-send-email 1.7.5.4 In-Reply-To: <1320973829-4388-1-git-send-email-richard.zhao@linaro.org> References: <1320973829-4388-1-git-send-email-richard.zhao@linaro.org> MIME-Version: 1.0 X-OriginatorOrg: sigmatel.com Signed-off-by: Richard Zhao --- arch/arm/mach-mx5/pm-imx5.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/arm/mach-mx5/pm-imx5.c b/arch/arm/mach-mx5/pm-imx5.c index 98052fc..2bdc85f 100644 --- a/arch/arm/mach-mx5/pm-imx5.c +++ b/arch/arm/mach-mx5/pm-imx5.c @@ -22,7 +22,7 @@ static struct clk *gpc_dvfs_clk; static int mx5_suspend_prepare(void) { - return clk_enable(gpc_dvfs_clk); + return clk_prepare_enable(gpc_dvfs_clk); } static int mx5_suspend_enter(suspend_state_t state) @@ -52,7 +52,7 @@ static int mx5_suspend_enter(suspend_state_t state) static void mx5_suspend_finish(void) { - clk_disable(gpc_dvfs_clk); + clk_disable_unprepare(gpc_dvfs_clk); } static int mx5_pm_valid(suspend_state_t state)