Commit f51380a7 authored by Boris Brezillon's avatar Boris Brezillon Committed by Daniel Lezcano
Browse files

clocksource: tcb_clksrc: Remove IRQF_DISABLED



Remove the deprecated IRQF_DISABLED flag.

Signed-off-by: default avatarBoris BREZILLON <b.brezillon@overkiz.com>
Signed-off-by: default avatarDaniel Lezcano <daniel.lezcano@linaro.org>
parent 5b3c11da
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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,
};