diff options
author | Greg KH <greg@press.(none)> | 2005-10-28 13:13:16 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2005-10-28 13:13:16 -0400 |
commit | 6fbfddcb52d8d9fa2cd209f5ac2a1c87497d55b5 (patch) | |
tree | c0414e89678fcef7ce3493e048d855bde781ae8d /arch/arm/mach-sa1100/neponset.c | |
parent | 1a222bca26ca691e83be1b08f5e96ae96d0d8cae (diff) | |
parent | 27d1097d39509494706eaa2620ef3b1e780a3224 (diff) |
Merge ../bleed-2.6
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) |