arm: Cleanup the irq namespace
Convert to the new function names. Automated with coccinelle. Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
This commit is contained in:
@@ -284,13 +284,13 @@ void __init pxa_init_gpio(int mux_irq, int start, int end, set_wake_t fn)
|
||||
}
|
||||
|
||||
for (irq = gpio_to_irq(start); irq <= gpio_to_irq(end); irq++) {
|
||||
set_irq_chip(irq, &pxa_muxed_gpio_chip);
|
||||
set_irq_handler(irq, handle_edge_irq);
|
||||
irq_set_chip(irq, &pxa_muxed_gpio_chip);
|
||||
irq_set_handler(irq, handle_edge_irq);
|
||||
set_irq_flags(irq, IRQF_VALID | IRQF_PROBE);
|
||||
}
|
||||
|
||||
/* Install handler for GPIO>=2 edge detect interrupts */
|
||||
set_irq_chained_handler(mux_irq, pxa_gpio_demux_handler);
|
||||
irq_set_chained_handler(mux_irq, pxa_gpio_demux_handler);
|
||||
pxa_muxed_gpio_chip.irq_set_wake = fn;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user