diff options
author | Eric Miao <eric.y.miao@gmail.com> | 2007-06-21 23:14:09 -0400 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2007-07-12 09:28:15 -0400 |
commit | cd49104d99b56383a3b1fdce2f31018197093c31 (patch) | |
tree | 51ce37a0ff1396d6f9e5ca0f0f76deec127ead04 /arch/arm/mach-pxa/irq.c | |
parent | 8118d124949ed8ff1a450e0c0d13cfab8c2ff7aa (diff) |
[ARM] 4450/1: pxa: add pxa25x_init_irq() and pxa27x_init_irq()
/* should be ok this time, I aligned this patch to your arm:pxa2.mbox */
1. move pxa25x specific IRQ initialization code to pxa25x_init_irq()
and pxa27x code to pxa27x_init_irq(), remove pxa_init_irq()
2. replace all pxa_init_irq() with their PXA25x or PXA27x specific
functions
Signed-off-by: eric miao <eric.miao@marvell.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mach-pxa/irq.c')
-rw-r--r-- | arch/arm/mach-pxa/irq.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/arch/arm/mach-pxa/irq.c b/arch/arm/mach-pxa/irq.c index 09d2fe19c85f..4b867b0789d5 100644 --- a/arch/arm/mach-pxa/irq.c +++ b/arch/arm/mach-pxa/irq.c | |||
@@ -375,12 +375,3 @@ void __init pxa_init_irq_gpio(int gpio_nr) | |||
375 | set_irq_chip(IRQ_GPIO_2_x, &pxa_internal_chip_low); | 375 | set_irq_chip(IRQ_GPIO_2_x, &pxa_internal_chip_low); |
376 | set_irq_chained_handler(IRQ_GPIO_2_x, pxa_gpio_demux_handler); | 376 | set_irq_chained_handler(IRQ_GPIO_2_x, pxa_gpio_demux_handler); |
377 | } | 377 | } |
378 | |||
379 | void __init pxa_init_irq(void) | ||
380 | { | ||
381 | pxa_init_irq_low(); | ||
382 | #ifdef CONFIG_PXA27x | ||
383 | pxa_init_irq_high(); | ||
384 | #endif | ||
385 | pxa_init_irq_gpio(PXA_LAST_GPIO + 1); | ||
386 | } | ||