aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/clocksource
diff options
context:
space:
mode:
authorGael Portay <gael.portay@gmail.com>2014-09-28 19:50:05 -0400
committerDaniel Lezcano <daniel.lezcano@linaro.org>2014-09-28 19:50:05 -0400
commit2743f1beb0d31be9f59b6fc84f755fb4e173df4d (patch)
treecf6adcc9ae6372406c8f484716c2546b987caf69 /drivers/clocksource
parentc387f07e6205cc13f57c1def5f885bf0a20e1c2d (diff)
clocksource: tcb_clksrc: Sanitize IRQ request
The clock is not unprepared in case of the request IRQ fails. Also update to request_irq. Signed-off-by: Gaƫl PORTAY <gael.portay@gmail.com> Acked-by: Daniel Lezcano <daniel.lezcano@linaro.org> Acked-by: Boris Brezillon <boris.brezillon@free-electrons.com> Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
Diffstat (limited to 'drivers/clocksource')
-rw-r--r--drivers/clocksource/tcb_clksrc.c13
1 files changed, 4 insertions, 9 deletions
diff --git a/drivers/clocksource/tcb_clksrc.c b/drivers/clocksource/tcb_clksrc.c
index a8d7ea14f183..c0b56ea2ddf6 100644
--- a/drivers/clocksource/tcb_clksrc.c
+++ b/drivers/clocksource/tcb_clksrc.c
@@ -178,12 +178,6 @@ static irqreturn_t ch2_irq(int irq, void *handle)
178 return IRQ_NONE; 178 return IRQ_NONE;
179} 179}
180 180
181static struct irqaction tc_irqaction = {
182 .name = "tc_clkevt",
183 .flags = IRQF_TIMER,
184 .handler = ch2_irq,
185};
186
187static int __init setup_clkevents(struct atmel_tc *tc, int clk32k_divisor_idx) 181static int __init setup_clkevents(struct atmel_tc *tc, int clk32k_divisor_idx)
188{ 182{
189 int ret; 183 int ret;
@@ -198,15 +192,16 @@ static int __init setup_clkevents(struct atmel_tc *tc, int clk32k_divisor_idx)
198 192
199 clkevt.regs = tc->regs; 193 clkevt.regs = tc->regs;
200 clkevt.clk = t2_clk; 194 clkevt.clk = t2_clk;
201 tc_irqaction.dev_id = &clkevt;
202 195
203 timer_clock = clk32k_divisor_idx; 196 timer_clock = clk32k_divisor_idx;
204 197
205 clkevt.clkevt.cpumask = cpumask_of(0); 198 clkevt.clkevt.cpumask = cpumask_of(0);
206 199
207 ret = setup_irq(irq, &tc_irqaction); 200 ret = request_irq(irq, ch2_irq, IRQF_TIMER, "tc_clkevt", &clkevt);
208 if (ret) 201 if (ret) {
202 clk_disable_unprepare(t2_clk);
209 return ret; 203 return ret;
204 }
210 205
211 clockevents_config_and_register(&clkevt.clkevt, 32768, 1, 0xffff); 206 clockevents_config_and_register(&clkevt.clkevt, 32768, 1, 0xffff);
212 207