aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/clocksource
diff options
context:
space:
mode:
authorGaël PORTAY <gael.portay@gmail.com>2014-09-06 13:52:37 -0400
committerNicolas Ferre <nicolas.ferre@atmel.com>2014-09-08 04:54:03 -0400
commitd07a1ecdfb96b26dd665b54fee22fc7417b1cb08 (patch)
tree438c1b4526361ab1b491e6c459a883876ade8c49 /drivers/clocksource
parent84f462371cc07272a17e2ae96c3540f795db273a (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: Nicolas Ferre <nicolas.ferre@atmel.com>
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 f922e81d531b..8bdbc45c6dad 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