git.openpandora.org
/
pandora-u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cd48a21
)
board_f: Modify DRAM message
author
Neha Malcom Francis
<n-francis@ti.com>
Wed, 19 Mar 2025 14:03:26 +0000
(19:33 +0530)
committer
Tom Rini
<trini@konsulko.com>
Tue, 8 Apr 2025 21:20:30 +0000
(15:20 -0600)
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>
common/board_f.c
patch
|
blob
|
history
diff --git
a/common/board_f.c
b/common/board_f.c
index
99616fd
..
9bbbf73
100644
(file)
--- 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);