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

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>

authored by

Michael Opdenacker and committed by
Russell King
78f6db99 a09df105

+8 -9
+1 -1
arch/arm/mach-ebsa110/core.c
··· 206 206 207 207 static struct irqaction ebsa110_timer_irq = { 208 208 .name = "EBSA110 Timer Tick", 209 - .flags = IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL, 209 + .flags = IRQF_TIMER | IRQF_IRQPOLL, 210 210 .handler = ebsa110_timer_interrupt, 211 211 }; 212 212
+1 -1
arch/arm/mach-integrator/integrator_ap.c
··· 358 358 359 359 static struct irqaction integrator_timer_irq = { 360 360 .name = "timer", 361 - .flags = IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL, 361 + .flags = IRQF_TIMER | IRQF_IRQPOLL, 362 362 .handler = integrator_timer_interrupt, 363 363 .dev_id = &integrator_clockevent, 364 364 };
+1 -1
arch/arm/mach-ks8695/time.c
··· 122 122 123 123 static struct irqaction ks8695_timer_irq = { 124 124 .name = "ks8695_tick", 125 - .flags = IRQF_DISABLED | IRQF_TIMER, 125 + .flags = IRQF_TIMER, 126 126 .handler = ks8695_timer_interrupt, 127 127 }; 128 128
+1 -1
arch/arm/mach-netx/time.c
··· 99 99 100 100 static struct irqaction netx_timer_irq = { 101 101 .name = "NetX Timer Tick", 102 - .flags = IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL, 102 + .flags = IRQF_TIMER | IRQF_IRQPOLL, 103 103 .handler = netx_timer_interrupt, 104 104 }; 105 105
+1 -1
arch/arm/mach-rpc/dma.c
··· 141 141 struct iomd_dma *idma = container_of(dma, struct iomd_dma, dma); 142 142 143 143 return request_irq(idma->irq, iomd_dma_handle, 144 - IRQF_DISABLED, idma->dma.device_id, idma); 144 + 0, idma->dma.device_id, idma); 145 145 } 146 146 147 147 static void iomd_free_dma(unsigned int chan, dma_t *dma)
-1
arch/arm/mach-rpc/time.c
··· 75 75 76 76 static struct irqaction ioc_timer_irq = { 77 77 .name = "timer", 78 - .flags = IRQF_DISABLED, 79 78 .handler = ioc_timer_interrupt 80 79 }; 81 80
+1 -1
arch/arm/mach-sa1100/time.c
··· 112 112 113 113 static struct irqaction sa1100_timer_irq = { 114 114 .name = "ost0", 115 - .flags = IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL, 115 + .flags = IRQF_TIMER | IRQF_IRQPOLL, 116 116 .handler = sa1100_ost0_interrupt, 117 117 .dev_id = &ckevt_sa1100_osmr0, 118 118 };
+1 -1
arch/arm/mach-u300/timer.c
··· 337 337 338 338 static struct irqaction u300_timer_irq = { 339 339 .name = "U300 Timer Tick", 340 - .flags = IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL, 340 + .flags = IRQF_TIMER | IRQF_IRQPOLL, 341 341 .handler = u300_timer_interrupt, 342 342 }; 343 343
+1 -1
arch/arm/plat-iop/time.c
··· 127 127 static struct irqaction iop_timer_irq = { 128 128 .name = "IOP Timer Tick", 129 129 .handler = iop_timer_interrupt, 130 - .flags = IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL, 130 + .flags = IRQF_TIMER | IRQF_IRQPOLL, 131 131 .dev_id = &iop_clockevent, 132 132 }; 133 133