diff options
author | Deepak Saxena <dsaxena@plexity.net> | 2005-10-28 10:19:00 -0400 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2005-10-28 10:19:00 -0400 |
commit | 9fe133b149e8a48742a64b72f22041bcd31fe827 (patch) | |
tree | f1e61e32613c0c972f88a1ee8886dcefaa8ca3d5 /arch/arm/plat-omap/sram.c | |
parent | 36d28c03d17506dd30aeed9d68a4023f3e7631dc (diff) |
[ARM] 2987/1: Replace map_desc.physical with map_desc.pfn: OMAP
Patch from Deepak Saxena
OMAP map_desc.pfn conversion
Signed-off-by: Deepak Saxena <dsaxena@plexity.net>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/plat-omap/sram.c')
-rw-r--r-- | arch/arm/plat-omap/sram.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/arch/arm/plat-omap/sram.c b/arch/arm/plat-omap/sram.c index 7719a4062e3a..7ad69f14a3e7 100644 --- a/arch/arm/plat-omap/sram.c +++ b/arch/arm/plat-omap/sram.c | |||
@@ -59,7 +59,11 @@ void __init omap_detect_sram(void) | |||
59 | } | 59 | } |
60 | 60 | ||
61 | static struct map_desc omap_sram_io_desc[] __initdata = { | 61 | static struct map_desc omap_sram_io_desc[] __initdata = { |
62 | { OMAP1_SRAM_BASE, OMAP1_SRAM_START, 0, MT_DEVICE } | 62 | { /* .length gets filled in at runtime */ |
63 | .virtual = OMAP1_SRAM_BASE, | ||
64 | .pfn = __phys_to_pfn(OMAP1_SRAM_START), | ||
65 | .type = MT_DEVICE | ||
66 | } | ||
63 | }; | 67 | }; |
64 | 68 | ||
65 | /* | 69 | /* |