diff options
Diffstat (limited to 'arch/arm/mach-omap1')
-rw-r--r-- | arch/arm/mach-omap1/board-osk.c | 2 | ||||
-rw-r--r-- | arch/arm/mach-omap1/fpga.c | 2 | ||||
-rw-r--r-- | arch/arm/mach-omap1/pm.c | 2 | ||||
-rw-r--r-- | arch/arm/mach-omap1/serial.c | 2 | ||||
-rw-r--r-- | arch/arm/mach-omap1/time.c | 4 |
5 files changed, 6 insertions, 6 deletions
diff --git a/arch/arm/mach-omap1/board-osk.c b/arch/arm/mach-omap1/board-osk.c index 91933301bb73..b742261c97ad 100644 --- a/arch/arm/mach-omap1/board-osk.c +++ b/arch/arm/mach-omap1/board-osk.c | |||
@@ -357,7 +357,7 @@ static void __init osk_mistral_init(void) | |||
357 | */ | 357 | */ |
358 | ret = request_irq(OMAP_GPIO_IRQ(OMAP_MPUIO(2)), | 358 | ret = request_irq(OMAP_GPIO_IRQ(OMAP_MPUIO(2)), |
359 | &osk_mistral_wake_interrupt, | 359 | &osk_mistral_wake_interrupt, |
360 | SA_SHIRQ, "mistral_wakeup", | 360 | IRQF_SHARED, "mistral_wakeup", |
361 | &osk_mistral_wake_interrupt); | 361 | &osk_mistral_wake_interrupt); |
362 | if (ret != 0) { | 362 | if (ret != 0) { |
363 | omap_free_gpio(OMAP_MPUIO(2)); | 363 | omap_free_gpio(OMAP_MPUIO(2)); |
diff --git a/arch/arm/mach-omap1/fpga.c b/arch/arm/mach-omap1/fpga.c index 880cd2d8f4aa..34eb79ee6e61 100644 --- a/arch/arm/mach-omap1/fpga.c +++ b/arch/arm/mach-omap1/fpga.c | |||
@@ -133,7 +133,7 @@ static struct irqchip omap_fpga_irq = { | |||
133 | * mask_ack routine for all of the FPGA interrupts has been changed from | 133 | * mask_ack routine for all of the FPGA interrupts has been changed from |
134 | * fpga_mask_ack_irq() to fpga_ack_irq() so that the specific FPGA interrupt | 134 | * fpga_mask_ack_irq() to fpga_ack_irq() so that the specific FPGA interrupt |
135 | * being serviced is left unmasked. We can do this because the FPGA cascade | 135 | * being serviced is left unmasked. We can do this because the FPGA cascade |
136 | * interrupt is installed with the SA_INTERRUPT flag, which leaves all | 136 | * interrupt is installed with the IRQF_DISABLED flag, which leaves all |
137 | * interrupts masked at the CPU while an FPGA interrupt handler executes. | 137 | * interrupts masked at the CPU while an FPGA interrupt handler executes. |
138 | * | 138 | * |
139 | * Limited testing indicates that this workaround appears to be effective | 139 | * Limited testing indicates that this workaround appears to be effective |
diff --git a/arch/arm/mach-omap1/pm.c b/arch/arm/mach-omap1/pm.c index 1b4e1d57afb1..cd76185bab74 100644 --- a/arch/arm/mach-omap1/pm.c +++ b/arch/arm/mach-omap1/pm.c | |||
@@ -690,7 +690,7 @@ static irqreturn_t omap_wakeup_interrupt(int irq, void * dev, | |||
690 | 690 | ||
691 | static struct irqaction omap_wakeup_irq = { | 691 | static struct irqaction omap_wakeup_irq = { |
692 | .name = "peripheral wakeup", | 692 | .name = "peripheral wakeup", |
693 | .flags = SA_INTERRUPT, | 693 | .flags = IRQF_DISABLED, |
694 | .handler = omap_wakeup_interrupt | 694 | .handler = omap_wakeup_interrupt |
695 | }; | 695 | }; |
696 | 696 | ||
diff --git a/arch/arm/mach-omap1/serial.c b/arch/arm/mach-omap1/serial.c index 5615fb8a3d5b..976edfb882e2 100644 --- a/arch/arm/mach-omap1/serial.c +++ b/arch/arm/mach-omap1/serial.c | |||
@@ -253,7 +253,7 @@ static void __init omap_serial_set_port_wakeup(int gpio_nr) | |||
253 | } | 253 | } |
254 | omap_set_gpio_direction(gpio_nr, 1); | 254 | omap_set_gpio_direction(gpio_nr, 1); |
255 | ret = request_irq(OMAP_GPIO_IRQ(gpio_nr), &omap_serial_wake_interrupt, | 255 | ret = request_irq(OMAP_GPIO_IRQ(gpio_nr), &omap_serial_wake_interrupt, |
256 | SA_TRIGGER_RISING, "serial wakeup", NULL); | 256 | IRQF_TRIGGER_RISING, "serial wakeup", NULL); |
257 | if (ret) { | 257 | if (ret) { |
258 | omap_free_gpio(gpio_nr); | 258 | omap_free_gpio(gpio_nr); |
259 | printk(KERN_ERR "No interrupt for UART wake GPIO: %i\n", | 259 | printk(KERN_ERR "No interrupt for UART wake GPIO: %i\n", |
diff --git a/arch/arm/mach-omap1/time.c b/arch/arm/mach-omap1/time.c index a01f0efdae14..4d91b9f51084 100644 --- a/arch/arm/mach-omap1/time.c +++ b/arch/arm/mach-omap1/time.c | |||
@@ -177,7 +177,7 @@ static irqreturn_t omap_mpu_timer_interrupt(int irq, void *dev_id, | |||
177 | 177 | ||
178 | static struct irqaction omap_mpu_timer_irq = { | 178 | static struct irqaction omap_mpu_timer_irq = { |
179 | .name = "mpu timer", | 179 | .name = "mpu timer", |
180 | .flags = SA_INTERRUPT | SA_TIMER, | 180 | .flags = IRQF_DISABLED | IRQF_TIMER, |
181 | .handler = omap_mpu_timer_interrupt, | 181 | .handler = omap_mpu_timer_interrupt, |
182 | }; | 182 | }; |
183 | 183 | ||
@@ -191,7 +191,7 @@ static irqreturn_t omap_mpu_timer1_interrupt(int irq, void *dev_id, | |||
191 | 191 | ||
192 | static struct irqaction omap_mpu_timer1_irq = { | 192 | static struct irqaction omap_mpu_timer1_irq = { |
193 | .name = "mpu timer1 overflow", | 193 | .name = "mpu timer1 overflow", |
194 | .flags = SA_INTERRUPT, | 194 | .flags = IRQF_DISABLED, |
195 | .handler = omap_mpu_timer1_interrupt, | 195 | .handler = omap_mpu_timer1_interrupt, |
196 | }; | 196 | }; |
197 | 197 | ||