linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] clocksource: Freescale: handle of_iomap failures in legacy timer driver
@ 2016-08-30 17:09 Arvind Yadav
  2016-09-08 11:02 ` Daniel Lezcano
  0 siblings, 1 reply; 3+ messages in thread
From: Arvind Yadav @ 2016-08-30 17:09 UTC (permalink / raw)
  To: daniel.lezcano; +Cc: tglx, linux-kernel, Li.Xiubo, Arvind Yadav

Check return value of of_iomap and handle errors correctly.

Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>
---
 drivers/clocksource/fsl_ftm_timer.c | 16 ++++++++++------
 1 file changed, 10 insertions(+), 6 deletions(-)

diff --git a/drivers/clocksource/fsl_ftm_timer.c b/drivers/clocksource/fsl_ftm_timer.c
index 738515b..c42d159 100644
--- a/drivers/clocksource/fsl_ftm_timer.c
+++ b/drivers/clocksource/fsl_ftm_timer.c
@@ -335,36 +335,40 @@ static int __init ftm_timer_init(struct device_node *np)
 	priv->clksrc_base = of_iomap(np, 1);
 	if (!priv->clksrc_base) {
 		pr_err("ftm: unable to map source timer registers\n");
-		goto err;
+		goto err1;
 	}
 
 	ret = -EINVAL;
 	irq = irq_of_parse_and_map(np, 0);
 	if (irq <= 0) {
 		pr_err("ftm: unable to get IRQ from DT, %d\n", irq);
-		goto err;
+		goto err2;
 	}
 
 	priv->big_endian = of_property_read_bool(np, "big-endian");
 
 	freq = ftm_clk_init(np);
 	if (!freq)
-		goto err;
+		goto err2;
 
 	ret = ftm_calc_closest_round_cyc(freq);
 	if (ret)
-		goto err;
+		goto err2;
 
 	ret = ftm_clocksource_init(freq);
 	if (ret)
-		goto err;
+		goto err2;
 
 	ret = ftm_clockevent_init(freq, irq);
 	if (ret)
-		goto err;
+		goto err2;
 
 	return 0;
 
+err2:
+	iounmap(priv->clksrc_base);
+err1:
+	iounmap(priv->clkevt_base);
 err:
 	kfree(priv);
 	return ret;
-- 
2.7.4

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] clocksource: Freescale: handle of_iomap failures in legacy timer driver
  2016-08-30 17:09 [PATCH] clocksource: Freescale: handle of_iomap failures in legacy timer driver Arvind Yadav
@ 2016-09-08 11:02 ` Daniel Lezcano
  2016-09-08 17:14   ` arvind Yadav
  0 siblings, 1 reply; 3+ messages in thread
From: Daniel Lezcano @ 2016-09-08 11:02 UTC (permalink / raw)
  To: Arvind Yadav; +Cc: tglx, linux-kernel, Li.Xiubo

On 30/08/2016 19:09, Arvind Yadav wrote:
> Check return value of of_iomap and handle errors correctly.
> 
> Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>
> ---

Hi Arvind,

usually the undo labels are named like this:

err_unmap_clksrc:

err_unmap_clkevt:

Thanks.

  -- Daniel


>  drivers/clocksource/fsl_ftm_timer.c | 16 ++++++++++------
>  1 file changed, 10 insertions(+), 6 deletions(-)
> 
> diff --git a/drivers/clocksource/fsl_ftm_timer.c b/drivers/clocksource/fsl_ftm_timer.c
> index 738515b..c42d159 100644
> --- a/drivers/clocksource/fsl_ftm_timer.c
> +++ b/drivers/clocksource/fsl_ftm_timer.c
> @@ -335,36 +335,40 @@ static int __init ftm_timer_init(struct device_node *np)
>  	priv->clksrc_base = of_iomap(np, 1);
>  	if (!priv->clksrc_base) {
>  		pr_err("ftm: unable to map source timer registers\n");
> -		goto err;
> +		goto err1;
>  	}
>  
>  	ret = -EINVAL;
>  	irq = irq_of_parse_and_map(np, 0);
>  	if (irq <= 0) {
>  		pr_err("ftm: unable to get IRQ from DT, %d\n", irq);
> -		goto err;
> +		goto err2;
>  	}
>  
>  	priv->big_endian = of_property_read_bool(np, "big-endian");
>  
>  	freq = ftm_clk_init(np);
>  	if (!freq)
> -		goto err;
> +		goto err2;
>  
>  	ret = ftm_calc_closest_round_cyc(freq);
>  	if (ret)
> -		goto err;
> +		goto err2;
>  
>  	ret = ftm_clocksource_init(freq);
>  	if (ret)
> -		goto err;
> +		goto err2;
>  
>  	ret = ftm_clockevent_init(freq, irq);
>  	if (ret)
> -		goto err;
> +		goto err2;
>  
>  	return 0;
>  
> +err2:
> +	iounmap(priv->clksrc_base);
> +err1:
> +	iounmap(priv->clkevt_base);
>  err:
>  	kfree(priv);
>  	return ret;
> 


-- 
 <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

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] clocksource: Freescale: handle of_iomap failures in legacy timer driver
  2016-09-08 11:02 ` Daniel Lezcano
@ 2016-09-08 17:14   ` arvind Yadav
  0 siblings, 0 replies; 3+ messages in thread
From: arvind Yadav @ 2016-09-08 17:14 UTC (permalink / raw)
  To: Daniel Lezcano; +Cc: tglx, linux-kernel, Li.Xiubo

Thanks Daniel, I have done the changes as per your suggestion.

Please review it.

-Arvind


On Thursday 08 September 2016 04:32 PM, Daniel Lezcano wrote:
> On 30/08/2016 19:09, Arvind Yadav wrote:
>> Check return value of of_iomap and handle errors correctly.
>>
>> Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>
>> ---
> Hi Arvind,
>
> usually the undo labels are named like this:
>
> err_unmap_clksrc:
>
> err_unmap_clkevt:
>
> Thanks.
>
>    -- Daniel
>
>
>>   drivers/clocksource/fsl_ftm_timer.c | 16 ++++++++++------
>>   1 file changed, 10 insertions(+), 6 deletions(-)
>>
>> diff --git a/drivers/clocksource/fsl_ftm_timer.c b/drivers/clocksource/fsl_ftm_timer.c
>> index 738515b..c42d159 100644
>> --- a/drivers/clocksource/fsl_ftm_timer.c
>> +++ b/drivers/clocksource/fsl_ftm_timer.c
>> @@ -335,36 +335,40 @@ static int __init ftm_timer_init(struct device_node *np)
>>   	priv->clksrc_base = of_iomap(np, 1);
>>   	if (!priv->clksrc_base) {
>>   		pr_err("ftm: unable to map source timer registers\n");
>> -		goto err;
>> +		goto err1;
>>   	}
>>   
>>   	ret = -EINVAL;
>>   	irq = irq_of_parse_and_map(np, 0);
>>   	if (irq <= 0) {
>>   		pr_err("ftm: unable to get IRQ from DT, %d\n", irq);
>> -		goto err;
>> +		goto err2;
>>   	}
>>   
>>   	priv->big_endian = of_property_read_bool(np, "big-endian");
>>   
>>   	freq = ftm_clk_init(np);
>>   	if (!freq)
>> -		goto err;
>> +		goto err2;
>>   
>>   	ret = ftm_calc_closest_round_cyc(freq);
>>   	if (ret)
>> -		goto err;
>> +		goto err2;
>>   
>>   	ret = ftm_clocksource_init(freq);
>>   	if (ret)
>> -		goto err;
>> +		goto err2;
>>   
>>   	ret = ftm_clockevent_init(freq, irq);
>>   	if (ret)
>> -		goto err;
>> +		goto err2;
>>   
>>   	return 0;
>>   
>> +err2:
>> +	iounmap(priv->clksrc_base);
>> +err1:
>> +	iounmap(priv->clkevt_base);
>>   err:
>>   	kfree(priv);
>>   	return ret;
>>
>

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2016-09-08 17:14 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-08-30 17:09 [PATCH] clocksource: Freescale: handle of_iomap failures in legacy timer driver Arvind Yadav
2016-09-08 11:02 ` Daniel Lezcano
2016-09-08 17:14   ` arvind Yadav

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).