diff options
author | Michael Opdenacker <michael@free-electrons.com> | 2014-03-04 16:04:50 -0500 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2014-03-12 06:32:38 -0400 |
commit | 78f6db99522bbdd2f2a90c963744bd51c8602990 (patch) | |
tree | 25ba7eb37ea119658fb436e50c889a09d485071d /arch/arm | |
parent | a09df10585d3b3b7a2f640b11fabea262e751091 (diff) |
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')
-rw-r--r-- | arch/arm/mach-ebsa110/core.c | 2 | ||||
-rw-r--r-- | arch/arm/mach-integrator/integrator_ap.c | 2 | ||||
-rw-r--r-- | arch/arm/mach-ks8695/time.c | 2 | ||||
-rw-r--r-- | arch/arm/mach-netx/time.c | 2 | ||||
-rw-r--r-- | arch/arm/mach-rpc/dma.c | 2 | ||||
-rw-r--r-- | arch/arm/mach-rpc/time.c | 1 | ||||
-rw-r--r-- | arch/arm/mach-sa1100/time.c | 2 | ||||
-rw-r--r-- | arch/arm/mach-u300/timer.c | 2 | ||||
-rw-r--r-- | arch/arm/plat-iop/time.c | 2 |
9 files changed, 8 insertions, 9 deletions
diff --git a/arch/arm/mach-ebsa110/core.c b/arch/arm/mach-ebsa110/core.c index 68ac934d4565..8254e716b095 100644 --- a/arch/arm/mach-ebsa110/core.c +++ b/arch/arm/mach-ebsa110/core.c | |||
@@ -206,7 +206,7 @@ ebsa110_timer_interrupt(int irq, void *dev_id) | |||
206 | 206 | ||
207 | static struct irqaction ebsa110_timer_irq = { | 207 | static struct irqaction ebsa110_timer_irq = { |
208 | .name = "EBSA110 Timer Tick", | 208 | .name = "EBSA110 Timer Tick", |
209 | .flags = IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL, | 209 | .flags = IRQF_TIMER | IRQF_IRQPOLL, |
210 | .handler = ebsa110_timer_interrupt, | 210 | .handler = ebsa110_timer_interrupt, |
211 | }; | 211 | }; |
212 | 212 | ||
diff --git a/arch/arm/mach-integrator/integrator_ap.c b/arch/arm/mach-integrator/integrator_ap.c index 17c0fe627435..e4f27f0e56ac 100644 --- a/arch/arm/mach-integrator/integrator_ap.c +++ b/arch/arm/mach-integrator/integrator_ap.c | |||
@@ -358,7 +358,7 @@ static struct clock_event_device integrator_clockevent = { | |||
358 | 358 | ||
359 | static struct irqaction integrator_timer_irq = { | 359 | static struct irqaction integrator_timer_irq = { |
360 | .name = "timer", | 360 | .name = "timer", |
361 | .flags = IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL, | 361 | .flags = IRQF_TIMER | IRQF_IRQPOLL, |
362 | .handler = integrator_timer_interrupt, | 362 | .handler = integrator_timer_interrupt, |
363 | .dev_id = &integrator_clockevent, | 363 | .dev_id = &integrator_clockevent, |
364 | }; | 364 | }; |
diff --git a/arch/arm/mach-ks8695/time.c b/arch/arm/mach-ks8695/time.c index 426c97662f5b..a197874bf382 100644 --- a/arch/arm/mach-ks8695/time.c +++ b/arch/arm/mach-ks8695/time.c | |||
@@ -122,7 +122,7 @@ static irqreturn_t ks8695_timer_interrupt(int irq, void *dev_id) | |||
122 | 122 | ||
123 | static struct irqaction ks8695_timer_irq = { | 123 | static struct irqaction ks8695_timer_irq = { |
124 | .name = "ks8695_tick", | 124 | .name = "ks8695_tick", |
125 | .flags = IRQF_DISABLED | IRQF_TIMER, | 125 | .flags = IRQF_TIMER, |
126 | .handler = ks8695_timer_interrupt, | 126 | .handler = ks8695_timer_interrupt, |
127 | }; | 127 | }; |
128 | 128 | ||
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) | |||
99 | 99 | ||
100 | static struct irqaction netx_timer_irq = { | 100 | static struct irqaction netx_timer_irq = { |
101 | .name = "NetX Timer Tick", | 101 | .name = "NetX Timer Tick", |
102 | .flags = IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL, | 102 | .flags = IRQF_TIMER | IRQF_IRQPOLL, |
103 | .handler = netx_timer_interrupt, | 103 | .handler = netx_timer_interrupt, |
104 | }; | 104 | }; |
105 | 105 | ||
diff --git a/arch/arm/mach-rpc/dma.c b/arch/arm/mach-rpc/dma.c index 85883b2e0e49..6d3517dc4772 100644 --- a/arch/arm/mach-rpc/dma.c +++ b/arch/arm/mach-rpc/dma.c | |||
@@ -141,7 +141,7 @@ static int iomd_request_dma(unsigned int chan, dma_t *dma) | |||
141 | struct iomd_dma *idma = container_of(dma, struct iomd_dma, dma); | 141 | struct iomd_dma *idma = container_of(dma, struct iomd_dma, dma); |
142 | 142 | ||
143 | return request_irq(idma->irq, iomd_dma_handle, | 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 | static void iomd_free_dma(unsigned int chan, dma_t *dma) | 147 | static void iomd_free_dma(unsigned int chan, dma_t *dma) |
diff --git a/arch/arm/mach-rpc/time.c b/arch/arm/mach-rpc/time.c index 9a6def14df01..9a5158861ca9 100644 --- a/arch/arm/mach-rpc/time.c +++ b/arch/arm/mach-rpc/time.c | |||
@@ -75,7 +75,6 @@ ioc_timer_interrupt(int irq, void *dev_id) | |||
75 | 75 | ||
76 | static struct irqaction ioc_timer_irq = { | 76 | static struct irqaction ioc_timer_irq = { |
77 | .name = "timer", | 77 | .name = "timer", |
78 | .flags = IRQF_DISABLED, | ||
79 | .handler = ioc_timer_interrupt | 78 | .handler = ioc_timer_interrupt |
80 | }; | 79 | }; |
81 | 80 | ||
diff --git a/arch/arm/mach-sa1100/time.c b/arch/arm/mach-sa1100/time.c index 6fd4acb8f187..4852c08cb526 100644 --- a/arch/arm/mach-sa1100/time.c +++ b/arch/arm/mach-sa1100/time.c | |||
@@ -112,7 +112,7 @@ static struct clock_event_device ckevt_sa1100_osmr0 = { | |||
112 | 112 | ||
113 | static struct irqaction sa1100_timer_irq = { | 113 | static struct irqaction sa1100_timer_irq = { |
114 | .name = "ost0", | 114 | .name = "ost0", |
115 | .flags = IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL, | 115 | .flags = IRQF_TIMER | IRQF_IRQPOLL, |
116 | .handler = sa1100_ost0_interrupt, | 116 | .handler = sa1100_ost0_interrupt, |
117 | .dev_id = &ckevt_sa1100_osmr0, | 117 | .dev_id = &ckevt_sa1100_osmr0, |
118 | }; | 118 | }; |
diff --git a/arch/arm/mach-u300/timer.c b/arch/arm/mach-u300/timer.c index fe08fd34c0ce..de52cb37c479 100644 --- a/arch/arm/mach-u300/timer.c +++ b/arch/arm/mach-u300/timer.c | |||
@@ -337,7 +337,7 @@ static irqreturn_t u300_timer_interrupt(int irq, void *dev_id) | |||
337 | 337 | ||
338 | static struct irqaction u300_timer_irq = { | 338 | static struct irqaction u300_timer_irq = { |
339 | .name = "U300 Timer Tick", | 339 | .name = "U300 Timer Tick", |
340 | .flags = IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL, | 340 | .flags = IRQF_TIMER | IRQF_IRQPOLL, |
341 | .handler = u300_timer_interrupt, | 341 | .handler = u300_timer_interrupt, |
342 | }; | 342 | }; |
343 | 343 | ||
diff --git a/arch/arm/plat-iop/time.c b/arch/arm/plat-iop/time.c index d70b73364a3f..6ad65d8ae237 100644 --- a/arch/arm/plat-iop/time.c +++ b/arch/arm/plat-iop/time.c | |||
@@ -127,7 +127,7 @@ iop_timer_interrupt(int irq, void *dev_id) | |||
127 | static struct irqaction iop_timer_irq = { | 127 | static struct irqaction iop_timer_irq = { |
128 | .name = "IOP Timer Tick", | 128 | .name = "IOP Timer Tick", |
129 | .handler = iop_timer_interrupt, | 129 | .handler = iop_timer_interrupt, |
130 | .flags = IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL, | 130 | .flags = IRQF_TIMER | IRQF_IRQPOLL, |
131 | .dev_id = &iop_clockevent, | 131 | .dev_id = &iop_clockevent, |
132 | }; | 132 | }; |
133 | 133 | ||