summaryrefslogtreecommitdiff
path: root/cmd/bdinfo.c
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2020-05-10 14:16:40 -0600
committerTom Rini <trini@konsulko.com>2020-06-25 13:24:11 -0400
commite227c27393d9d3391288e68623751a448a973b79 (patch)
treea993b6256cdfdd08a3faf5dbb3e1ba18fb41b701 /cmd/bdinfo.c
parent1aeeaeb56e03610250075943b546b9e913b099b0 (diff)
bdinfo: arc: Use the generic bd command
There is nothing new in the arc 'bd' command beyond what is already there. Switch it over to use the generic code. Signed-off-by: Simon Glass <sjg@chromium.org> Acked-by: Alexey Brodkin <abrodkin@synopsys.com> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'cmd/bdinfo.c')
-rw-r--r--cmd/bdinfo.c12
1 files changed, 1 insertions, 11 deletions
diff --git a/cmd/bdinfo.c b/cmd/bdinfo.c
index 996fb5d06f..d2dcda91ab 100644
--- a/cmd/bdinfo.c
+++ b/cmd/bdinfo.c
@@ -217,17 +217,7 @@ static inline void __maybe_unused print_std_bdinfo(const bd_t *bd)
#elif defined(CONFIG_ARC)
-int do_bdinfo(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
-{
- bd_t *bd = gd->bd;
-
- print_bi_mem(bd);
- print_eth_ip_addr();
- print_baudrate();
- print_cpu_word_size();
-
- return 0;
-}
+#define USE_GENERIC
#elif defined(CONFIG_XTENSA)