Commit f51380a75652a4600b34ce384c4ff89ce0a15132

Authored by Boris BREZILLON
Committed by Daniel Lezcano
1 parent 5b3c11da14

clocksource: tcb_clksrc: Remove IRQF_DISABLED

Remove the deprecated IRQF_DISABLED flag.

Signed-off-by: Boris BREZILLON <b.brezillon@overkiz.com>
Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

drivers/clocksource/tcb_clksrc.c
... ... @@ -180,7 +180,7 @@
180 180  
181 181 static struct irqaction tc_irqaction = {
182 182 .name = "tc_clkevt",
183   - .flags = IRQF_TIMER | IRQF_DISABLED,
  183 + .flags = IRQF_TIMER,
184 184 .handler = ch2_irq,
185 185 };
186 186