Browse Source

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>
Boris BREZILLON 11 years ago
parent
commit
f51380a756
1 changed files with 1 additions and 1 deletions
  1. 1 1
      drivers/clocksource/tcb_clksrc.c

+ 1 - 1
drivers/clocksource/tcb_clksrc.c

@@ -180,7 +180,7 @@ static irqreturn_t ch2_irq(int irq, void *handle)
 
 static struct irqaction tc_irqaction = {
 	.name		= "tc_clkevt",
-	.flags		= IRQF_TIMER | IRQF_DISABLED,
+	.flags		= IRQF_TIMER,
 	.handler	= ch2_irq,
 };