public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Nicolas Ferre <nicolas.ferre@atmel.com>
To: Boris BREZILLON <b.brezillon@overkiz.com>,
	Daniel Lezcano <daniel.lezcano@linaro.org>,
	Thomas Gleixner <tglx@linutronix.de>
Cc: <linux-arm-kernel@lists.infradead.org>, <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH 2/3] ARM: at91/tc/clocksource: improve driver robustness
Date: Wed, 2 Oct 2013 14:47:34 +0200	[thread overview]
Message-ID: <524C15E6.7070500@atmel.com> (raw)
In-Reply-To: <1380717341-6612-1-git-send-email-b.brezillon@overkiz.com>

On 02/10/2013 14:35, Boris BREZILLON :
> Check function return values to avoid false positive driver init.
>
> Signed-off-by: Boris BREZILLON <b.brezillon@overkiz.com>

Acked-by: Nicolas Ferre <nicolas.ferre@atmel.com>

> ---
>   drivers/clocksource/tcb_clksrc.c |   33 ++++++++++++++++++++++++++++-----
>   1 file changed, 28 insertions(+), 5 deletions(-)
>
> diff --git a/drivers/clocksource/tcb_clksrc.c b/drivers/clocksource/tcb_clksrc.c
> index 0481562..10a5d9e 100644
> --- a/drivers/clocksource/tcb_clksrc.c
> +++ b/drivers/clocksource/tcb_clksrc.c
> @@ -184,11 +184,18 @@ static struct irqaction tc_irqaction = {
>   	.handler	= ch2_irq,
>   };
>
> -static void __init setup_clkevents(struct atmel_tc *tc, int clk32k_divisor_idx)
> +static int __init setup_clkevents(struct atmel_tc *tc, int clk32k_divisor_idx)
>   {
> +	int ret;
>   	struct clk *t2_clk = tc->clk[2];
>   	int irq = tc->irq[2];
>
> +	/* try to enable t2 clk to avoid future errors in mode change */
> +	ret = clk_prepare_enable(t2_clk);
> +	if (ret)
> +		return ret;
> +	clk_disable_unprepare(t2_clk);
> +
>   	clkevt.regs = tc->regs;
>   	clkevt.clk = t2_clk;
>   	tc_irqaction.dev_id = &clkevt;
> @@ -197,16 +204,21 @@ static void __init setup_clkevents(struct atmel_tc *tc, int clk32k_divisor_idx)
>
>   	clkevt.clkevt.cpumask = cpumask_of(0);
>
> +	ret = setup_irq(irq, &tc_irqaction);
> +	if (ret)
> +		return ret;
> +
>   	clockevents_config_and_register(&clkevt.clkevt, 32768, 1, 0xffff);
>
> -	setup_irq(irq, &tc_irqaction);
> +	return ret;
>   }
>
>   #else /* !CONFIG_GENERIC_CLOCKEVENTS */
>
> -static void __init setup_clkevents(struct atmel_tc *tc, int clk32k_divisor_idx)
> +static int __init setup_clkevents(struct atmel_tc *tc, int clk32k_divisor_idx)
>   {
>   	/* NOTHING */
> +	return 0;
>   }
>
>   #endif
> @@ -328,13 +340,24 @@ static int __init tcb_clksrc_init(void)
>   	}
>
>   	/* and away we go! */
> -	clocksource_register_hz(&clksrc, divided_rate);
> +	ret = clocksource_register_hz(&clksrc, divided_rate);
> +	if (ret)
> +		goto err_disable_t1;
>
>   	/* channel 2:  periodic and oneshot timer support */
> -	setup_clkevents(tc, clk32k_divisor_idx);
> +	ret = setup_clkevents(tc, clk32k_divisor_idx);
> +	if (ret)
> +		goto err_unregister_clksrc;
>
>   	return 0;
>
> +err_unregister_clksrc:
> +	clocksource_unregister(&clksrc);
> +
> +err_disable_t1:
> +	if (!tc->tcb_config || tc->tcb_config->counter_width != 32)
> +		clk_disable_unprepare(tc->clk[1]);
> +
>   err_disable_t0:
>   	clk_disable_unprepare(t0_clk);
>
>


-- 
Nicolas Ferre

  reply	other threads:[~2013-10-02 12:47 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-10-02 12:34 [PATCH 0/3] ARM: at91/tc/clocksource: various robustness improvements Boris BREZILLON
2013-10-02 12:34 ` [PATCH 1/3] ARM: at91/tc/clocksource: replace clk_enable/disable with clk_prepare_enable/disable_unprepare Boris BREZILLON
2013-10-02 12:35 ` Boris BREZILLON
2013-10-02 12:35 ` [PATCH 2/3] ARM: at91/tc/clocksource: improve driver robustness Boris BREZILLON
2013-10-02 12:47   ` Nicolas Ferre [this message]
2013-10-02 12:35 ` [PATCH 3/3] ARM: at91/tc/clocksource: remove IRQF_DISABLED Boris BREZILLON
2013-10-02 12:47   ` Nicolas Ferre
2013-10-03 14:31 ` [PATCH 0/3] ARM: at91/tc/clocksource: various robustness improvements Daniel Lezcano

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=524C15E6.7070500@atmel.com \
    --to=nicolas.ferre@atmel.com \
    --cc=b.brezillon@overkiz.com \
    --cc=daniel.lezcano@linaro.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=tglx@linutronix.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox