diff options
author | Maxime Ripard <maxime.ripard@free-electrons.com> | 2013-10-14 15:07:48 -0400 |
---|---|---|
committer | Daniel Lezcano <daniel.lezcano@linaro.org> | 2013-10-22 16:36:50 -0400 |
commit | 3353652ce0eb22854b1748b8320c2b81912953a1 (patch) | |
tree | 6a86e07eb9f472fbb7202b5da2a056d52171243b | |
parent | 12e1480bcb4920c1b02b3793cb48756497919a60 (diff) |
clocksource: sun4i: remove IRQF_DISABLED
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>
-rw-r--r-- | drivers/clocksource/sun4i_timer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clocksource/sun4i_timer.c b/drivers/clocksource/sun4i_timer.c index 46008f9f49ad..2fb4695a28d8 100644 --- a/drivers/clocksource/sun4i_timer.c +++ b/drivers/clocksource/sun4i_timer.c | |||
@@ -133,7 +133,7 @@ static irqreturn_t sun4i_timer_interrupt(int irq, void *dev_id) | |||
133 | 133 | ||
134 | static struct irqaction sun4i_timer_irq = { | 134 | static struct irqaction sun4i_timer_irq = { |
135 | .name = "sun4i_timer0", | 135 | .name = "sun4i_timer0", |
136 | .flags = IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL, | 136 | .flags = IRQF_TIMER | IRQF_IRQPOLL, |
137 | .handler = sun4i_timer_interrupt, | 137 | .handler = sun4i_timer_interrupt, |
138 | .dev_id = &sun4i_clockevent, | 138 | .dev_id = &sun4i_clockevent, |
139 | }; | 139 | }; |