From: Mike Frysinger Date: Mon, 20 Dec 2010 10:18:55 +0000 (-0500) Subject: Blackfin: skip RAM display for 0 mem systems X-Git-Tag: v2011.06-rc1~182^2~32 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=7d69dfd2a80885b570cd1d47e5c25f0f76f09468;p=oweals%2Fu-boot.git Blackfin: skip RAM display for 0 mem systems Signed-off-by: Mike Frysinger --- diff --git a/arch/blackfin/lib/board.c b/arch/blackfin/lib/board.c index 8eca7d6fb6..59a0810544 100644 --- a/arch/blackfin/lib/board.c +++ b/arch/blackfin/lib/board.c @@ -283,8 +283,11 @@ void board_init_f(ulong bootflag) printf("Core: %s MHz, ", strmhz(buf, get_cclk())); printf("System: %s MHz\n", strmhz(buf, get_sclk())); - printf("RAM: "); - print_size(bd->bi_memsize, "\n"); + if (CONFIG_MEM_SIZE) { + printf("RAM: "); + print_size(bd->bi_memsize, "\n"); + } + #if defined(CONFIG_POST) post_init_f(); post_bootmode_init();