[U-Boot-Users] [PATCH 1/2] ppc: Cleanup get_effective_memsize() use
Marian Balakowicz
m8 at semihalf.com
Wed May 7 13:08:54 CEST 2008
Removed duplicated effective memory size calculation code.
Signed-off-by: Marian Balakowicz <m8 at semihalf.com>
---
lib_ppc/board.c | 11 -----------
1 files changed, 0 insertions(+), 11 deletions(-)
diff --git a/lib_ppc/board.c b/lib_ppc/board.c
index 1b8a872..4956403 100644
--- a/lib_ppc/board.c
+++ b/lib_ppc/board.c
@@ -453,18 +453,7 @@ void board_init_f (ulong bootflag)
*/
gd->ram_size -= CFG_MEM_TOP_HIDE;
-#ifndef CONFIG_MAX_MEM_MAPPED
-#define CONFIG_MAX_MEM_MAPPED (256 << 20)
-#endif
-
-#ifndef CONFIG_VERY_BIG_RAM
addr = CFG_SDRAM_BASE + get_effective_memsize();
-#else
- /* only allow stack below 256M */
- addr = CFG_SDRAM_BASE +
- (gd->ram_size > CONFIG_MAX_MEM_MAPPED) ?
- CONFIG_MAX_MEM_MAPPED : get_effective_memsize();
-#endif
#ifdef CONFIG_LOGBUFFER
#ifndef CONFIG_ALT_LB_ADDR
More information about the U-Boot
mailing list