aboutsummaryrefslogtreecommitdiffstats
path: root/cmd
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2020-05-10 14:16:35 -0600
committerTom Rini <trini@konsulko.com>2020-06-25 13:24:11 -0400
commitaa6b898fb13e978e17f0cd2010408886438357ce (patch)
treea769862c9d700d2551f119c3f705c73b5155663d /cmd
parentc66981ccbda837f556ef4ed89d9f9ce93d2adf12 (diff)
downloadu-boot-aa6b898fb13e978e17f0cd2010408886438357ce.tar.gz
bdinfo: nds32: Use the generic bd command
This arch has none of its own info to show. Move it over to use the generic do_bdinfo(). Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Rick Chen <rick@andestech.com> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'cmd')
-rw-r--r--cmd/bdinfo.c14
1 files changed, 1 insertions, 13 deletions
diff --git a/cmd/bdinfo.c b/cmd/bdinfo.c
index 8d1aeefa8e..a3e15b1555 100644
--- a/cmd/bdinfo.c
+++ b/cmd/bdinfo.c
@@ -339,19 +339,7 @@ static int do_bdinfo(struct cmd_tbl *cmdtp, int flag, int argc,
#elif defined(CONFIG_NDS32)
-int do_bdinfo(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
-{
- bd_t *bd = gd->bd;
-
- print_num("arch_number", bd->bi_arch_number);
- print_bi_boot_params(bd);
- print_bi_dram(bd);
- print_eth_ip_addr();
- print_baudrate();
- print_cpu_word_size();
-
- return 0;
-}
+#define USE_GENERIC
#elif defined(CONFIG_RISCV)