diff options
Diffstat (limited to 'arch/arm/mach-sa1100/neponset.c')
-rw-r--r-- | arch/arm/mach-sa1100/neponset.c | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/arch/arm/mach-sa1100/neponset.c b/arch/arm/mach-sa1100/neponset.c index 7609d69cf1cc..052e4caedb89 100644 --- a/arch/arm/mach-sa1100/neponset.c +++ b/arch/arm/mach-sa1100/neponset.c | |||
@@ -325,9 +325,17 @@ static int __init neponset_init(void) | |||
325 | subsys_initcall(neponset_init); | 325 | subsys_initcall(neponset_init); |
326 | 326 | ||
327 | static struct map_desc neponset_io_desc[] __initdata = { | 327 | static struct map_desc neponset_io_desc[] __initdata = { |
328 | /* virtual physical length type */ | 328 | { /* System Registers */ |
329 | { 0xf3000000, 0x10000000, SZ_1M, MT_DEVICE }, /* System Registers */ | 329 | .virtual = 0xf3000000, |
330 | { 0xf4000000, 0x40000000, SZ_1M, MT_DEVICE } /* SA-1111 */ | 330 | .pfn = __phys_to_pfn(0x10000000), |
331 | .length = SZ_1M, | ||
332 | .type = MT_DEVICE | ||
333 | }, { /* SA-1111 */ | ||
334 | .virtual = 0xf4000000, | ||
335 | .pfn = __phys_to_pfn(0x40000000), | ||
336 | .length = SZ_1M, | ||
337 | .type = MT_DEVICE | ||
338 | } | ||
331 | }; | 339 | }; |
332 | 340 | ||
333 | void __init neponset_map_io(void) | 341 | void __init neponset_map_io(void) |