Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

ARM: ep93xx: remove deprecated IRQF_DISABLED

This patch proposes to remove the use of the IRQF_DISABLED flag

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>
Acked-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Signed-off-by: Ryan Mallon <rmallon@gmail.com>
Signed-off-by: Olof Johansson <olof@lixom.net>

authored by

Michael Opdenacker and committed by
Olof Johansson
3a71ae47 6ce4eac1

+1 -1
+1 -1
arch/arm/mach-ep93xx/core.c
··· 137 137 138 138 static struct irqaction ep93xx_timer_irq = { 139 139 .name = "ep93xx timer", 140 - .flags = IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL, 140 + .flags = IRQF_TIMER | IRQF_IRQPOLL, 141 141 .handler = ep93xx_timer_interrupt, 142 142 }; 143 143