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>
This commit is contained in:
Boris BREZILLON 2013-10-02 14:35:48 +02:00 committed by Daniel Lezcano
parent 5b3c11da14
commit f51380a756

View file

@ -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,
};