Skip to content

Commit

Permalink
clocksource: sun4i: remove IRQF_DISABLED
Browse files Browse the repository at this point in the history
IRQF_DISABLED is a no-op nowadays, so we can safely remove it.

Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
  • Loading branch information
Maxime Ripard authored and Daniel Lezcano committed Oct 22, 2013
1 parent 12e1480 commit 3353652
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/clocksource/sun4i_timer.c
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ static irqreturn_t sun4i_timer_interrupt(int irq, void *dev_id)

static struct irqaction sun4i_timer_irq = {
.name = "sun4i_timer0",
.flags = IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL,
.flags = IRQF_TIMER | IRQF_IRQPOLL,
.handler = sun4i_timer_interrupt,
.dev_id = &sun4i_clockevent,
};
Expand Down

0 comments on commit 3353652

Please sign in to comment.