diff options
author | Michal Simek <michal.simek@xilinx.com> | 2013-08-20 16:45:36 +0200 |
---|---|---|
committer | Michal Simek <michal.simek@xilinx.com> | 2013-11-08 15:18:30 +0100 |
commit | db2a7df0343a0fb166d369e58bcfe605162dc857 (patch) | |
tree | 0580af154dc3b2ee9092408789332fea9a9b2fcc /arch | |
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')
-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 e4b3f33ef34..d7abb71abf6 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) static struct irqaction timer_irqaction = { .handler = timer_interrupt, - .flags = IRQF_DISABLED | IRQF_TIMER, + .flags = IRQF_TIMER, .name = "timer", .dev_id = &clockevent_xilinx_timer, }; |