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/spitz.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/spitz.c')
-rw-r--r-- | arch/arm/mach-pxa/spitz.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/arm/mach-pxa/spitz.c b/arch/arm/mach-pxa/spitz.c index 3cbac63bed3c..838b73d159e3 100644 --- a/arch/arm/mach-pxa/spitz.c +++ b/arch/arm/mach-pxa/spitz.c | |||
@@ -560,7 +560,7 @@ MACHINE_START(SPITZ, "SHARP Spitz") | |||
560 | .io_pg_offst = (io_p2v(0x40000000) >> 18) & 0xfffc, | 560 | .io_pg_offst = (io_p2v(0x40000000) >> 18) & 0xfffc, |
561 | .fixup = fixup_spitz, | 561 | .fixup = fixup_spitz, |
562 | .map_io = pxa_map_io, | 562 | .map_io = pxa_map_io, |
563 | .init_irq = pxa_init_irq, | 563 | .init_irq = pxa27x_init_irq, |
564 | .init_machine = spitz_init, | 564 | .init_machine = spitz_init, |
565 | .timer = &pxa_timer, | 565 | .timer = &pxa_timer, |
566 | MACHINE_END | 566 | MACHINE_END |
@@ -572,7 +572,7 @@ MACHINE_START(BORZOI, "SHARP Borzoi") | |||
572 | .io_pg_offst = (io_p2v(0x40000000) >> 18) & 0xfffc, | 572 | .io_pg_offst = (io_p2v(0x40000000) >> 18) & 0xfffc, |
573 | .fixup = fixup_spitz, | 573 | .fixup = fixup_spitz, |
574 | .map_io = pxa_map_io, | 574 | .map_io = pxa_map_io, |
575 | .init_irq = pxa_init_irq, | 575 | .init_irq = pxa27x_init_irq, |
576 | .init_machine = spitz_init, | 576 | .init_machine = spitz_init, |
577 | .timer = &pxa_timer, | 577 | .timer = &pxa_timer, |
578 | MACHINE_END | 578 | MACHINE_END |
@@ -584,7 +584,7 @@ MACHINE_START(AKITA, "SHARP Akita") | |||
584 | .io_pg_offst = (io_p2v(0x40000000) >> 18) & 0xfffc, | 584 | .io_pg_offst = (io_p2v(0x40000000) >> 18) & 0xfffc, |
585 | .fixup = fixup_spitz, | 585 | .fixup = fixup_spitz, |
586 | .map_io = pxa_map_io, | 586 | .map_io = pxa_map_io, |
587 | .init_irq = pxa_init_irq, | 587 | .init_irq = pxa27x_init_irq, |
588 | .init_machine = akita_init, | 588 | .init_machine = akita_init, |
589 | .timer = &pxa_timer, | 589 | .timer = &pxa_timer, |
590 | MACHINE_END | 590 | MACHINE_END |