From f41b830f24095a2d4aebd6e559d2153f0ccc07b1 Mon Sep 17 00:00:00 2001 From: Simon Glass Date: Sun, 10 May 2020 14:16:32 -0600 Subject: [PATCH] bdinfo: sh: Use the generic bd command This arch has no code that is not already in the generic function. Drop the arch-specific function and change sh over to use the generic one. Signed-off-by: Simon Glass Reviewed-by: Bin Meng --- cmd/bdinfo.c | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/cmd/bdinfo.c b/cmd/bdinfo.c index 16e7ad0fa5..65c64786c0 100644 --- a/cmd/bdinfo.c +++ b/cmd/bdinfo.c @@ -327,18 +327,7 @@ static int do_bdinfo(struct cmd_tbl *cmdtp, int flag, int argc, #elif defined(CONFIG_SH) -int do_bdinfo(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]) -{ - bd_t *bd = gd->bd; - - print_bi_mem(bd); - print_bi_flash(bd); - print_eth_ip_addr(); - print_baudrate(); - print_cpu_word_size(); - - return 0; -} +#define USE_GENERIC #elif defined(CONFIG_X86) -- GitLab