diff options
author | Michal Simek <michal.simek@xilinx.com> | 2013-08-20 10:45:36 -0400 |
---|---|---|
committer | Michal Simek <michal.simek@xilinx.com> | 2013-11-08 09:18:30 -0500 |
commit | db2a7df0343a0fb166d369e58bcfe605162dc857 (patch) | |
tree | 0580af154dc3b2ee9092408789332fea9a9b2fcc /arch/microblaze | |
parent | 7f15a256b556bf26780d7a0bd03c88914a852022 (diff) |
microblaze: Remove deprecated IRQF_DISABLED
Removed IRQF_DISABLED as it's no-op and should be removed.
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Diffstat (limited to 'arch/microblaze')
-rw-r--r-- | arch/microblaze/kernel/timer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/microblaze/kernel/timer.c b/arch/microblaze/kernel/timer.c index e4b3f33ef34c..d7abb71abf61 100644 --- a/arch/microblaze/kernel/timer.c +++ b/arch/microblaze/kernel/timer.c | |||
@@ -148,7 +148,7 @@ static irqreturn_t timer_interrupt(int irq, void *dev_id) | |||
148 | 148 | ||
149 | static struct irqaction timer_irqaction = { | 149 | static struct irqaction timer_irqaction = { |
150 | .handler = timer_interrupt, | 150 | .handler = timer_interrupt, |
151 | .flags = IRQF_DISABLED | IRQF_TIMER, | 151 | .flags = IRQF_TIMER, |
152 | .name = "timer", | 152 | .name = "timer", |
153 | .dev_id = &clockevent_xilinx_timer, | 153 | .dev_id = &clockevent_xilinx_timer, |
154 | }; | 154 | }; |