From mboxrd@z Thu Jan 1 00:00:00 1970 From: Laurent Pinchart Date: Sat, 09 Nov 2013 12:56:40 +0000 Subject: Re: [PATCH 08/12] mmc: sh_mobile_sdhi: Convert to clk_prepare/unprepare Message-Id: <3901213.QOEV1AdNoe@avalon> List-Id: References: <1383000569-8916-1-git-send-email-laurent.pinchart+renesas@ideasonboard.com> <1383000569-8916-9-git-send-email-laurent.pinchart+renesas@ideasonboard.com> In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: linux-arm-kernel@lists.infradead.org Hi Chris, Could you please pick this patch up ? On Tuesday 29 October 2013 09:09:37 Guennadi Liakhovetski wrote: > On Mon, 28 Oct 2013, Laurent Pinchart wrote: > > Turn clk_enable() and clk_disable() calls into clk_prepare_enable() and > > clk_disable_unprepare() to get ready for the migration to the common > > clock framework. > > > > Cc: Chris Ball > > Cc: Guennadi Liakhovetski > > Cc: linux-mmc@vger.kernel.org > > Signed-off-by: Laurent Pinchart > > > > Acked-by: Guennadi Liakhovetski > > Thanks > Guennadi > > > --- > > > > drivers/mmc/host/sh_mobile_sdhi.c | 4 ++-- > > 1 file changed, 2 insertions(+), 2 deletions(-) > > > > diff --git a/drivers/mmc/host/sh_mobile_sdhi.c > > b/drivers/mmc/host/sh_mobile_sdhi.c index f344659..ed1718a 100644 > > --- a/drivers/mmc/host/sh_mobile_sdhi.c > > +++ b/drivers/mmc/host/sh_mobile_sdhi.c > > @@ -54,7 +54,7 @@ static int sh_mobile_sdhi_clk_enable(struct > > platform_device *pdev, unsigned int> > > struct mmc_host *mmc = platform_get_drvdata(pdev); > > struct tmio_mmc_host *host = mmc_priv(mmc); > > struct sh_mobile_sdhi *priv = container_of(host->pdata, struct > > sh_mobile_sdhi, mmc_data);> > > - int ret = clk_enable(priv->clk); > > + int ret = clk_prepare_enable(priv->clk); > > > > if (ret < 0) > > > > return ret; > > > > @@ -67,7 +67,7 @@ static void sh_mobile_sdhi_clk_disable(struct > > platform_device *pdev)> > > struct mmc_host *mmc = platform_get_drvdata(pdev); > > struct tmio_mmc_host *host = mmc_priv(mmc); > > struct sh_mobile_sdhi *priv = container_of(host->pdata, struct > > sh_mobile_sdhi, mmc_data);> > > - clk_disable(priv->clk); > > + clk_disable_unprepare(priv->clk); > > > > } > > > > static int sh_mobile_sdhi_wait_idle(struct tmio_mmc_host *host) -- Regards, Laurent Pinchart