From: Neha Malcom Francis Date: Wed, 19 Mar 2025 14:03:26 +0000 (+0530) Subject: board_f: Modify DRAM message X-Git-Tag: v2025.07-rc1~110^2~1 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7dfe3cdc6c58f428803b0f1698bbd4b283103adf;p=pandora-u-boot.git board_f: Modify DRAM message The message "DRAM: 2 GiB (effective 32 GiB)" can be a little confusing, modify the message s/effective/total to make it more evident. Signed-off-by: Neha Malcom Francis --- diff --git a/common/board_f.c b/common/board_f.c index 99616fdac80..9bbbf733f54 100644 --- a/common/board_f.c +++ b/common/board_f.c @@ -254,7 +254,7 @@ static int show_dram_config(void) print_size(gd->ram_size, ""); if (!sizes_near(gd->ram_size, size)) { - printf(" (effective "); + printf(" (total "); print_size(size, ")"); } board_add_ram_info(0);