Skip to content
Snippets Groups Projects
Commit 7d69dfd2 authored by Mike Frysinger's avatar Mike Frysinger
Browse files

Blackfin: skip RAM display for 0 mem systems


Signed-off-by: default avatarMike Frysinger <vapier@gentoo.org>
parent f57689e7
No related branches found
No related tags found
No related merge requests found
......@@ -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();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment