diff options
author | Michael Opdenacker <michael.opdenacker@free-electrons.com> | 2013-09-07 03:07:13 -0400 |
---|---|---|
committer | Olof Johansson <olof@lixom.net> | 2013-10-07 12:32:46 -0400 |
commit | 1091a654ac1722b6ab4fc6533925c1a02486fff4 (patch) | |
tree | 867d134b9ca93a12898816f62b1dadf1511e7445 /arch/arm/mach-davinci | |
parent | fca9b5ea3eefcbeabc98b48c00c1594aa413dd46 (diff) |
ARM: davinci: remove deprecated IRQF_DISABLED
This patch proposes to remove the IRQF_DISABLED flag from Davinci code ;)
It's a NOOP since 2.6.35, and will be removed one day
Signed-off-by: Michael Opdenacker <michael.opdenacker@free-electrons.com>
Signed-off-by: Sekhar Nori <nsekhar@ti.com>
Signed-off-by: Olof Johansson <olof@lixom.net>
Diffstat (limited to 'arch/arm/mach-davinci')
-rw-r--r-- | arch/arm/mach-davinci/board-da830-evm.c | 2 | ||||
-rw-r--r-- | arch/arm/mach-davinci/board-omapl138-hawk.c | 2 | ||||
-rw-r--r-- | arch/arm/mach-davinci/time.c | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/arch/arm/mach-davinci/board-da830-evm.c b/arch/arm/mach-davinci/board-da830-evm.c index c4bdc0a1c36e..30a44e2df47e 100644 --- a/arch/arm/mach-davinci/board-da830-evm.c +++ b/arch/arm/mach-davinci/board-da830-evm.c | |||
@@ -74,7 +74,7 @@ static int da830_evm_usb_ocic_notify(da8xx_ocic_handler_t handler) | |||
74 | if (handler != NULL) { | 74 | if (handler != NULL) { |
75 | da830_evm_usb_ocic_handler = handler; | 75 | da830_evm_usb_ocic_handler = handler; |
76 | 76 | ||
77 | error = request_irq(irq, da830_evm_usb_ocic_irq, IRQF_DISABLED | | 77 | error = request_irq(irq, da830_evm_usb_ocic_irq, |
78 | IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING, | 78 | IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING, |
79 | "OHCI over-current indicator", NULL); | 79 | "OHCI over-current indicator", NULL); |
80 | if (error) | 80 | if (error) |
diff --git a/arch/arm/mach-davinci/board-omapl138-hawk.c b/arch/arm/mach-davinci/board-omapl138-hawk.c index ab98c75cabb4..e0de2da41b5c 100644 --- a/arch/arm/mach-davinci/board-omapl138-hawk.c +++ b/arch/arm/mach-davinci/board-omapl138-hawk.c | |||
@@ -211,7 +211,7 @@ static int hawk_usb_ocic_notify(da8xx_ocic_handler_t handler) | |||
211 | hawk_usb_ocic_handler = handler; | 211 | hawk_usb_ocic_handler = handler; |
212 | 212 | ||
213 | error = request_irq(irq, omapl138_hawk_usb_ocic_irq, | 213 | error = request_irq(irq, omapl138_hawk_usb_ocic_irq, |
214 | IRQF_DISABLED | IRQF_TRIGGER_RISING | | 214 | IRQF_TRIGGER_RISING | |
215 | IRQF_TRIGGER_FALLING, | 215 | IRQF_TRIGGER_FALLING, |
216 | "OHCI over-current indicator", NULL); | 216 | "OHCI over-current indicator", NULL); |
217 | if (error) | 217 | if (error) |
diff --git a/arch/arm/mach-davinci/time.c b/arch/arm/mach-davinci/time.c index 7a55b5c95971..e7ada0ca72ee 100644 --- a/arch/arm/mach-davinci/time.c +++ b/arch/arm/mach-davinci/time.c | |||
@@ -181,7 +181,7 @@ static struct timer_s timers[] = { | |||
181 | .name = "clockevent", | 181 | .name = "clockevent", |
182 | .opts = TIMER_OPTS_DISABLED, | 182 | .opts = TIMER_OPTS_DISABLED, |
183 | .irqaction = { | 183 | .irqaction = { |
184 | .flags = IRQF_DISABLED | IRQF_TIMER, | 184 | .flags = IRQF_TIMER, |
185 | .handler = timer_interrupt, | 185 | .handler = timer_interrupt, |
186 | } | 186 | } |
187 | }, | 187 | }, |
@@ -190,7 +190,7 @@ static struct timer_s timers[] = { | |||
190 | .period = ~0, | 190 | .period = ~0, |
191 | .opts = TIMER_OPTS_PERIODIC, | 191 | .opts = TIMER_OPTS_PERIODIC, |
192 | .irqaction = { | 192 | .irqaction = { |
193 | .flags = IRQF_DISABLED | IRQF_TIMER, | 193 | .flags = IRQF_TIMER, |
194 | .handler = freerun_interrupt, | 194 | .handler = freerun_interrupt, |
195 | } | 195 | } |
196 | }, | 196 | }, |