mirror of
https://xff.cz/git/u-boot/
synced 2025-08-31 08:12:06 +02:00
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>
This commit is contained in:
@@ -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);
|
||||
|
Reference in New Issue
Block a user