aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-davinci
diff options
context:
space:
mode:
Diffstat (limited to 'arch/arm/mach-davinci')
-rw-r--r--arch/arm/mach-davinci/board-da830-evm.c2
-rw-r--r--arch/arm/mach-davinci/board-omapl138-hawk.c2
-rw-r--r--arch/arm/mach-davinci/time.c4
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 },