diff options
author | Neha Malcom Francis <n-francis@ti.com> | 2025-03-19 19:33:26 +0530 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2025-04-08 15:20:30 -0600 |
commit | 7dfe3cdc6c58f428803b0f1698bbd4b283103adf (patch) | |
tree | f6028a950b8e11f2a20e213f12bd220d29f89d5a | |
parent | cd48a21dbde69053894bfaefa3870f2054c91801 (diff) |
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 <n-francis@ti.com>
-rw-r--r-- | common/board_f.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |