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/corgi.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/corgi.c')
-rw-r--r-- | arch/arm/mach-pxa/corgi.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/arm/mach-pxa/corgi.c b/arch/arm/mach-pxa/corgi.c index a1a900d16665..a12eb18391b1 100644 --- a/arch/arm/mach-pxa/corgi.c +++ b/arch/arm/mach-pxa/corgi.c | |||
@@ -368,7 +368,7 @@ MACHINE_START(CORGI, "SHARP Corgi") | |||
368 | .io_pg_offst = (io_p2v(0x40000000) >> 18) & 0xfffc, | 368 | .io_pg_offst = (io_p2v(0x40000000) >> 18) & 0xfffc, |
369 | .fixup = fixup_corgi, | 369 | .fixup = fixup_corgi, |
370 | .map_io = pxa_map_io, | 370 | .map_io = pxa_map_io, |
371 | .init_irq = pxa_init_irq, | 371 | .init_irq = pxa25x_init_irq, |
372 | .init_machine = corgi_init, | 372 | .init_machine = corgi_init, |
373 | .timer = &pxa_timer, | 373 | .timer = &pxa_timer, |
374 | MACHINE_END | 374 | MACHINE_END |
@@ -380,7 +380,7 @@ MACHINE_START(SHEPHERD, "SHARP Shepherd") | |||
380 | .io_pg_offst = (io_p2v(0x40000000) >> 18) & 0xfffc, | 380 | .io_pg_offst = (io_p2v(0x40000000) >> 18) & 0xfffc, |
381 | .fixup = fixup_corgi, | 381 | .fixup = fixup_corgi, |
382 | .map_io = pxa_map_io, | 382 | .map_io = pxa_map_io, |
383 | .init_irq = pxa_init_irq, | 383 | .init_irq = pxa25x_init_irq, |
384 | .init_machine = corgi_init, | 384 | .init_machine = corgi_init, |
385 | .timer = &pxa_timer, | 385 | .timer = &pxa_timer, |
386 | MACHINE_END | 386 | MACHINE_END |
@@ -392,7 +392,7 @@ MACHINE_START(HUSKY, "SHARP Husky") | |||
392 | .io_pg_offst = (io_p2v(0x40000000) >> 18) & 0xfffc, | 392 | .io_pg_offst = (io_p2v(0x40000000) >> 18) & 0xfffc, |
393 | .fixup = fixup_corgi, | 393 | .fixup = fixup_corgi, |
394 | .map_io = pxa_map_io, | 394 | .map_io = pxa_map_io, |
395 | .init_irq = pxa_init_irq, | 395 | .init_irq = pxa25x_init_irq, |
396 | .init_machine = corgi_init, | 396 | .init_machine = corgi_init, |
397 | .timer = &pxa_timer, | 397 | .timer = &pxa_timer, |
398 | MACHINE_END | 398 | MACHINE_END |