Commit 1091a654 authored by Michael Opdenacker's avatar Michael Opdenacker Committed by Olof Johansson

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: default avatarMichael Opdenacker <michael.opdenacker@free-electrons.com>
Signed-off-by: default avatarSekhar Nori <nsekhar@ti.com>
Signed-off-by: default avatarOlof Johansson <olof@lixom.net>
parent fca9b5ea
...@@ -74,7 +74,7 @@ static int da830_evm_usb_ocic_notify(da8xx_ocic_handler_t handler) ...@@ -74,7 +74,7 @@ static int da830_evm_usb_ocic_notify(da8xx_ocic_handler_t handler)
if (handler != NULL) { if (handler != NULL) {
da830_evm_usb_ocic_handler = handler; da830_evm_usb_ocic_handler = handler;
error = request_irq(irq, da830_evm_usb_ocic_irq, IRQF_DISABLED | error = request_irq(irq, da830_evm_usb_ocic_irq,
IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING, IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING,
"OHCI over-current indicator", NULL); "OHCI over-current indicator", NULL);
if (error) if (error)
......
...@@ -211,7 +211,7 @@ static int hawk_usb_ocic_notify(da8xx_ocic_handler_t handler) ...@@ -211,7 +211,7 @@ static int hawk_usb_ocic_notify(da8xx_ocic_handler_t handler)
hawk_usb_ocic_handler = handler; hawk_usb_ocic_handler = handler;
error = request_irq(irq, omapl138_hawk_usb_ocic_irq, error = request_irq(irq, omapl138_hawk_usb_ocic_irq,
IRQF_DISABLED | IRQF_TRIGGER_RISING | IRQF_TRIGGER_RISING |
IRQF_TRIGGER_FALLING, IRQF_TRIGGER_FALLING,
"OHCI over-current indicator", NULL); "OHCI over-current indicator", NULL);
if (error) if (error)
......
...@@ -181,7 +181,7 @@ static struct timer_s timers[] = { ...@@ -181,7 +181,7 @@ static struct timer_s timers[] = {
.name = "clockevent", .name = "clockevent",
.opts = TIMER_OPTS_DISABLED, .opts = TIMER_OPTS_DISABLED,
.irqaction = { .irqaction = {
.flags = IRQF_DISABLED | IRQF_TIMER, .flags = IRQF_TIMER,
.handler = timer_interrupt, .handler = timer_interrupt,
} }
}, },
...@@ -190,7 +190,7 @@ static struct timer_s timers[] = { ...@@ -190,7 +190,7 @@ static struct timer_s timers[] = {
.period = ~0, .period = ~0,
.opts = TIMER_OPTS_PERIODIC, .opts = TIMER_OPTS_PERIODIC,
.irqaction = { .irqaction = {
.flags = IRQF_DISABLED | IRQF_TIMER, .flags = IRQF_TIMER,
.handler = freerun_interrupt, .handler = freerun_interrupt,
} }
}, },
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment