diff options
Diffstat (limited to 'arch/arm/mach-pxa/cm-x2xx.c')
-rw-r--r-- | arch/arm/mach-pxa/cm-x2xx.c | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/arch/arm/mach-pxa/cm-x2xx.c b/arch/arm/mach-pxa/cm-x2xx.c index d34b99febeb9..47e242005fac 100644 --- a/arch/arm/mach-pxa/cm-x2xx.c +++ b/arch/arm/mach-pxa/cm-x2xx.c | |||
@@ -498,7 +498,12 @@ static struct map_desc cmx2xx_io_desc[] __initdata = { | |||
498 | 498 | ||
499 | static void __init cmx2xx_map_io(void) | 499 | static void __init cmx2xx_map_io(void) |
500 | { | 500 | { |
501 | pxa_map_io(); | 501 | if (cpu_is_pxa25x()) |
502 | pxa25x_map_io(); | ||
503 | |||
504 | if (cpu_is_pxa27x()) | ||
505 | pxa27x_map_io(); | ||
506 | |||
502 | iotable_init(cmx2xx_io_desc, ARRAY_SIZE(cmx2xx_io_desc)); | 507 | iotable_init(cmx2xx_io_desc, ARRAY_SIZE(cmx2xx_io_desc)); |
503 | 508 | ||
504 | it8152_base_address = CMX2XX_IT8152_VIRT; | 509 | it8152_base_address = CMX2XX_IT8152_VIRT; |
@@ -506,7 +511,11 @@ static void __init cmx2xx_map_io(void) | |||
506 | #else | 511 | #else |
507 | static void __init cmx2xx_map_io(void) | 512 | static void __init cmx2xx_map_io(void) |
508 | { | 513 | { |
509 | pxa_map_io(); | 514 | if (cpu_is_pxa25x()) |
515 | pxa25x_map_io(); | ||
516 | |||
517 | if (cpu_is_pxa27x()) | ||
518 | pxa27x_map_io(); | ||
510 | } | 519 | } |
511 | #endif | 520 | #endif |
512 | 521 | ||