diff options
| author | 2014-03-04 22:04:50 +0100 | |
|---|---|---|
| committer | 2014-03-12 10:32:38 +0000 | |
| commit | 78f6db99522bbdd2f2a90c963744bd51c8602990 (patch) | |
| tree | 25ba7eb37ea119658fb436e50c889a09d485071d /arch/arm/mach-netx/time.c | |
| parent | ARM: 7999/1: arch/arm/mach-lpc32xx-remove-irqf-disabled (diff) | |
| download | linux-dev-78f6db99522bbdd2f2a90c963744bd51c8602990.tar.xz linux-dev-78f6db99522bbdd2f2a90c963744bd51c8602990.zip | |
ARM: 8000/1: misc: remove deprecated IRQF_DISABLED
This patch removes the use of the IRQF_DISABLED flag
from miscellaneous code in mach-xxx and plat-xxx
This flag is a NOOP since 2.6.35 and it will be removed one day.
Signed-off-by: Michael Opdenacker <michael.opdenacker@free-electrons.com>
Acked-by: Linus Walleij <linus.walleij@linaro.org>
Acked-by: Greg Ungerer <gerg@uclinux.org>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mach-netx/time.c')
| -rw-r--r-- | arch/arm/mach-netx/time.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-netx/time.c b/arch/arm/mach-netx/time.c index 6df42e643031..3177c7a40930 100644 --- a/arch/arm/mach-netx/time.c +++ b/arch/arm/mach-netx/time.c @@ -99,7 +99,7 @@ netx_timer_interrupt(int irq, void *dev_id) static struct irqaction netx_timer_irq = { .name = "NetX Timer Tick", - .flags = IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL, + .flags = IRQF_TIMER | IRQF_IRQPOLL, .handler = netx_timer_interrupt, }; |
