aboutsummaryrefslogtreecommitdiff
path: root/cmd/bdinfo.c
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2020-05-10 14:16:34 -0600
committerTom Rini <trini@konsulko.com>2020-06-25 13:24:11 -0400
commitc66981ccbda837f556ef4ed89d9f9ce93d2adf12 (patch)
treef06757584defa1b350b5d9f46944d9eed1b03a51 /cmd/bdinfo.c
parent41ec71d184f958ed01a6037536892fd4e645d562 (diff)
downloadu-boot-c66981ccbda837f556ef4ed89d9f9ce93d2adf12.zip
u-boot-c66981ccbda837f556ef4ed89d9f9ce93d2adf12.tar.gz
u-boot-c66981ccbda837f556ef4ed89d9f9ce93d2adf12.tar.bz2
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>
Diffstat (limited to 'cmd/bdinfo.c')
-rw-r--r--cmd/bdinfo.c16
1 files changed, 1 insertions, 15 deletions
diff --git a/cmd/bdinfo.c b/cmd/bdinfo.c
index 41d396a..8d1aeef 100644
--- a/cmd/bdinfo.c
+++ b/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)