diff options
author | Kevin Hilman <khilman@deeprooted.net> | 2006-09-25 05:41:24 -0400 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2006-09-25 05:41:24 -0400 |
commit | d1284b5f11aa946d732d60a402dfeec86a7bb2ef (patch) | |
tree | 7e761e3e316e9bc64759f82beb3a80cfaeb4d0fc /arch/arm | |
parent | 93bda4c0214441b0bb03b61c2bf1d6727896a750 (diff) |
ARM: OMAP: 2420 boot BUG(): failure to map SRAM
ARM: OMAP: Fix SRAM static mapping for EMU devices.
Fix SRAM static mapping for EMU devices.
Signed-off-by: Kevin Hilman <khilman@deeprooted.net>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/plat-omap/sram.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/arch/arm/plat-omap/sram.c b/arch/arm/plat-omap/sram.c index e75718301b0f..19014b2ff4c6 100644 --- a/arch/arm/plat-omap/sram.c +++ b/arch/arm/plat-omap/sram.c | |||
@@ -174,10 +174,7 @@ void __init omap_map_sram(void) | |||
174 | if (cpu_is_omap24xx()) { | 174 | if (cpu_is_omap24xx()) { |
175 | omap_sram_io_desc[0].virtual = OMAP2_SRAM_VA; | 175 | omap_sram_io_desc[0].virtual = OMAP2_SRAM_VA; |
176 | 176 | ||
177 | if (is_sram_locked()) | 177 | base = OMAP2_SRAM_PA; |
178 | base = OMAP2_SRAM_PUB_PA; | ||
179 | else | ||
180 | base = OMAP2_SRAM_PA; | ||
181 | base = ROUND_DOWN(base, PAGE_SIZE); | 178 | base = ROUND_DOWN(base, PAGE_SIZE); |
182 | omap_sram_io_desc[0].pfn = __phys_to_pfn(base); | 179 | omap_sram_io_desc[0].pfn = __phys_to_pfn(base); |
183 | } | 180 | } |