From: Simon Glass Date: Sun, 10 May 2020 20:16:36 +0000 (-0600) Subject: bdinfo: riscv: Use the generic bd command X-Git-Tag: v2025.01-rc5-pxa1908~2332^2~7^2~26 X-Git-Url: http://git.dujemihanovic.xyz/img/%7B%7B%20%24image.RelPermalink%20%7D%7D?a=commitdiff_plain;h=628c85aec0a2034e69f56a876132e66c9eb864ff;p=u-boot.git bdinfo: riscv: 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 Reviewed-by: Rick Chen Reviewed-by: Bin Meng --- diff --git a/cmd/bdinfo.c b/cmd/bdinfo.c index a3e15b1555..c1865d6d3e 100644 --- a/cmd/bdinfo.c +++ b/cmd/bdinfo.c @@ -343,20 +343,7 @@ static int do_bdinfo(struct cmd_tbl *cmdtp, int flag, int argc, #elif defined(CONFIG_RISCV) -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_num("relocaddr", gd->relocaddr); - print_num("reloc off", gd->reloc_off); - print_eth_ip_addr(); - print_baudrate(); - print_cpu_word_size(); - - return 0; -} +#define USE_GENERIC #elif defined(CONFIG_ARC)