* [PATCH] clocksource: vf_pit_timer: Unmap region obtained by of_iomap
@ 2016-09-21 15:29 Arvind Yadav
0 siblings, 0 replies; only message in thread
From: Arvind Yadav @ 2016-09-21 15:29 UTC (permalink / raw)
To: daniel.lezcano, tglx; +Cc: arnd, linux-kernel
Free memory mapping, if pit_timer_init is not successful.
Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>
---
drivers/clocksource/vf_pit_timer.c | 20 ++++++++++++++------
1 file changed, 14 insertions(+), 6 deletions(-)
diff --git a/drivers/clocksource/vf_pit_timer.c b/drivers/clocksource/vf_pit_timer.c
index 55d8d84..1c345d7 100644
--- a/drivers/clocksource/vf_pit_timer.c
+++ b/drivers/clocksource/vf_pit_timer.c
@@ -178,16 +178,20 @@ static int __init pit_timer_init(struct device_node *np)
clkevt_base = timer_base + PITn_OFFSET(3);
irq = irq_of_parse_and_map(np, 0);
- if (irq <= 0)
- return -EINVAL;
+ if (irq <= 0) {
+ ret = -EINVAL;
+ goto iounmap;
+ }
pit_clk = of_clk_get(np, 0);
- if (IS_ERR(pit_clk))
- return PTR_ERR(pit_clk);
+ if (IS_ERR(pit_clk)) {
+ ret = PTR_ERR(pit_clk);
+ goto iounmap;
+ }
ret = clk_prepare_enable(pit_clk);
if (ret)
- return ret;
+ goto iounmap;
clk_rate = clk_get_rate(pit_clk);
cycle_per_jiffy = clk_rate / (HZ);
@@ -197,8 +201,12 @@ static int __init pit_timer_init(struct device_node *np)
ret = pit_clocksource_init(clk_rate);
if (ret)
- return ret;
+ goto iounmap;
return pit_clockevent_init(clk_rate, irq);
+
+iounmap:
+ iounmap(timer_base);
+ return ret;
}
CLOCKSOURCE_OF_DECLARE(vf610, "fsl,vf610-pit", pit_timer_init);
--
2.7.4
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2016-09-21 15:30 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-09-21 15:29 [PATCH] clocksource: vf_pit_timer: Unmap region obtained by of_iomap 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).