diff options
author | Ovidiu Panait | 2020-07-24 14:12:13 +0300 |
---|---|---|
committer | Tom Rini | 2020-08-06 14:26:35 -0400 |
commit | 6ecefcfb6d0cfdd0c34db5d25ed58859eb266416 (patch) | |
tree | a166e8b34a8662a9c805950038d6384870c8f95c /cmd | |
parent | 9a17bfb6420bb5de1781b37b5a423f41aab29000 (diff) |
cmd: bdinfo: Move sram info prints to generic code
bi_sramstart and bi_sramsize are generic members of the bd_info structure,
so move the m68k/powerpc-specific prints to generic code. Also, print them
only if SRAM support is enabled via CONFIG_SYS_HAS_SRAM.
Reviewed-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Ovidiu Panait <ovidiu.panait@windriver.com>
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/bdinfo.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cmd/bdinfo.c b/cmd/bdinfo.c index 9485c404740..9593b345a3d 100644 --- a/cmd/bdinfo.c +++ b/cmd/bdinfo.c @@ -77,6 +77,10 @@ int do_bdinfo(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]) print_bi_dram(bd); bdinfo_print_num("memstart", (ulong)bd->bi_memstart); print_phys_addr("memsize", bd->bi_memsize); + if (IS_ENABLED(CONFIG_SYS_HAS_SRAM)) { + bdinfo_print_num("sramstart", (ulong)bd->bi_sramstart); + bdinfo_print_num("sramsize", (ulong)bd->bi_sramsize); + } bdinfo_print_num("flashstart", (ulong)bd->bi_flashstart); bdinfo_print_num("flashsize", (ulong)bd->bi_flashsize); bdinfo_print_num("flashoffset", (ulong)bd->bi_flashoffset); |