mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
bdinfo: sandbox: Use the generic bd command
Sandbox has a printout of 'FB base' but this code is not used since sandbox uses driver model for everything. Move sandbox over to use the generic do_bdinfo(). Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
This commit is contained in:
parent
41ec71d184
commit
c66981ccbd
1 changed files with 1 additions and 15 deletions
16
cmd/bdinfo.c
16
cmd/bdinfo.c
|
@ -335,21 +335,7 @@ static int do_bdinfo(struct cmd_tbl *cmdtp, int flag, int argc,
|
|||
|
||||
#elif defined(CONFIG_SANDBOX)
|
||||
|
||||
int do_bdinfo(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
|
||||
{
|
||||
bd_t *bd = gd->bd;
|
||||
|
||||
print_bi_boot_params(bd);
|
||||
print_bi_dram(bd);
|
||||
print_eth_ip_addr();
|
||||
|
||||
#if defined(CONFIG_LCD) || defined(CONFIG_VIDEO)
|
||||
print_num("FB base ", gd->fb_base);
|
||||
#endif
|
||||
print_cpu_word_size();
|
||||
|
||||
return 0;
|
||||
}
|
||||
#define USE_GENERIC
|
||||
|
||||
#elif defined(CONFIG_NDS32)
|
||||
|
||||
|
|
Loading…
Reference in a new issue