diff options
Diffstat (limited to 'common')
-rw-r--r-- | common/board_f.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/common/board_f.c b/common/board_f.c index 106fd34..def5752 100644 --- a/common/board_f.c +++ b/common/board_f.c @@ -180,13 +180,7 @@ static int announce_dram_init(void) #if defined(CONFIG_MIPS) || defined(CONFIG_PPC) || defined(CONFIG_M68K) static int init_func_ram(void) { - gd->ram_size = initdram(); - - if (gd->ram_size > 0) - return 0; - - puts("*** failed ***\n"); - return 1; + return initdram(); } #endif |