From: Marian Balakowicz Date: Wed, 7 May 2008 11:08:54 +0000 (+0200) Subject: ppc: Cleanup get_effective_memsize() use X-Git-Tag: v1.3.3~34 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c59518e15949b3403df5c5b0c2c48ea0e5bea24b;p=kernel%2Fu-boot.git ppc: Cleanup get_effective_memsize() use Removed duplicated effective memory size calculation code. Signed-off-by: Marian Balakowicz --- 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