[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <527CB8A7.5080502@linaro.org>
Date: Fri, 08 Nov 2013 11:10:47 +0100
From: Daniel Lezcano <daniel.lezcano@...aro.org>
To: Laurent Pinchart <laurent.pinchart+renesas@...asonboard.com>,
linux-arm-kernel@...ts.infradead.org
CC: linux-sh@...r.kernel.org, Mike Turquette <mturquette@...aro.org>,
linux-kernel@...r.kernel.org
Subject: Re: [PATCH v2 2/2] clocksource: sh_tmu: Add clk_prepare/unprepare
support
On 10/29/2013 03:31 PM, Laurent Pinchart wrote:
> Prepare the clock at probe time, as there is no other appropriate place
> in the driver where we're allowed to sleep.
>
> Cc: Daniel Lezcano <daniel.lezcano@...aro.org>
> Cc: linux-kernel@...r.kernel.org
> Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@...asonboard.com>
Applied in my tree as 3.13 fixes
Thanks Laurent.
-- Daniel
> ---
> drivers/clocksource/sh_tmu.c | 9 ++++++++-
> 1 file changed, 8 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/clocksource/sh_tmu.c b/drivers/clocksource/sh_tmu.c
> index 1597837..63557cd 100644
> --- a/drivers/clocksource/sh_tmu.c
> +++ b/drivers/clocksource/sh_tmu.c
> @@ -472,6 +472,11 @@ static int sh_tmu_setup(struct sh_tmu_priv *p, struct platform_device *pdev)
> ret = PTR_ERR(p->clk);
> goto err1;
> }
> +
> + ret = clk_prepare(p->clk);
> + if (ret < 0)
> + goto err2;
> +
> p->cs_enabled = false;
> p->enable_count = 0;
>
> @@ -479,10 +484,12 @@ static int sh_tmu_setup(struct sh_tmu_priv *p, struct platform_device *pdev)
> cfg->clockevent_rating,
> cfg->clocksource_rating);
> if (ret < 0)
> - goto err2;
> + goto err3;
>
> return 0;
>
> + err3:
> + clk_unprepare(p->clk);
> err2:
> clk_put(p->clk);
> err1:
>
--
<http://www.linaro.org/> Linaro.org │ Open source software for ARM SoCs
Follow Linaro: <http://www.facebook.com/pages/Linaro> Facebook |
<http://twitter.com/#!/linaroorg> Twitter |
<http://www.linaro.org/linaro-blog/> Blog
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists