diff --git a/cmd/mem.c b/cmd/mem.c index a690957..1f4b104 100644 --- a/cmd/mem.c +++ b/cmd/mem.c @@ -1329,7 +1329,7 @@ U_BOOT_CMD( #ifdef CONFIG_CMD_MEMINFO __weak void board_show_dram(phys_size_t size) { - puts("DRAM: "); + puts("DRAM: mem.c "); print_size(size, "\n"); } diff --git a/common/board_f.c b/common/board_f.c index 3b8b176..aba89c1 100644 --- a/common/board_f.c +++ b/common/board_f.c @@ -176,7 +176,7 @@ static int display_text_info(void) static int announce_dram_init(void) { - puts("DRAM: (I sure hope it doesn't init) "); + puts("DRAM: board_f.c "); return 0; }