diff options
author | Russell King <rmk@dyn-67.arm.linux.org.uk> | 2005-07-04 05:44:34 -0400 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2005-07-04 05:44:34 -0400 |
commit | 68070bdeeca7b7af6a42c0b3e5b1247e83c22ff9 (patch) | |
tree | 1ab85ea5d91207df696311974d6fb2efdc5887a0 /arch/arm/mach-pxa/poodle.c | |
parent | f9bd6ea446946b97208f9e1528eb5f9ef8f931cb (diff) |
[PATCH] ARM: Fix non-standard PXA io_pg_offst initialisers
These didn't match my sed expression correctly, fix them up manually.
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mach-pxa/poodle.c')
-rw-r--r-- | arch/arm/mach-pxa/poodle.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-pxa/poodle.c b/arch/arm/mach-pxa/poodle.c index ebae969e8830..0e4f6fab100a 100644 --- a/arch/arm/mach-pxa/poodle.c +++ b/arch/arm/mach-pxa/poodle.c | |||
@@ -182,7 +182,7 @@ static void __init poodle_map_io(void) | |||
182 | MACHINE_START(POODLE, "SHARP Poodle") | 182 | MACHINE_START(POODLE, "SHARP Poodle") |
183 | .phys_ram = 0xa0000000, | 183 | .phys_ram = 0xa0000000, |
184 | .phys_io = 0x40000000, | 184 | .phys_io = 0x40000000, |
185 | .io_pg_offst = ((io_p2v(0x40000000) >> 18) & 0xfffc,) | 185 | .io_pg_offst = (io_p2v(0x40000000) >> 18) & 0xfffc, |
186 | .fixup = fixup_poodle, | 186 | .fixup = fixup_poodle, |
187 | .map_io = poodle_map_io, | 187 | .map_io = poodle_map_io, |
188 | .init_irq = pxa_init_irq, | 188 | .init_irq = pxa_init_irq, |