Commit 19bd9b286da6f28f4cb04757dd8509a38f9f34d7

Authored by Michael Opdenacker
Committed by Russell King
1 parent 57c06a8ed7

ARM: 7997/1: cns3xxx: remove deprecated IRQF_DISABLED

This patch removes the use of the IRQF_DISABLED flag
from arch/arm/mach-cns3xxx/core.c

It's a NOOP since 2.6.35 and it will be removed one day.

Signed-off-by: Michael Opdenacker <michael.opdenacker@free-electrons.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

arch/arm/mach-cns3xxx/core.c
... ... @@ -155,7 +155,7 @@
155 155  
156 156 static struct irqaction cns3xxx_timer_irq = {
157 157 .name = "timer",
158   - .flags = IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL,
  158 + .flags = IRQF_TIMER | IRQF_IRQPOLL,
159 159 .handler = cns3xxx_timer_interrupt,
160 160 };
161 161