diff mbox series

[v2,17/39] bdinfo: arc: Use the generic bd command

Message ID 20200510201702.196031-9-sjg@chromium.org
State Accepted
Commit e227c27393d9d3391288e68623751a448a973b79
Headers show
Series Tidy up the 'bd' command. | expand

Commit Message

Simon Glass May 10, 2020, 8:16 p.m. UTC
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 at chromium.org>
---

Changes in v2:
- Fix up inadvertent merge of PowerPC/ARM/m68k/arc patches

 cmd/bdinfo.c | 12 +-----------
 1 file changed, 1 insertion(+), 11 deletions(-)

Comments

Alexey Brodkin May 12, 2020, 11 a.m. UTC | #1
Hi Simon,

> -----Original Message-----
> From: Simon Glass <sjg at chromium.org>
> Sent: Sunday, May 10, 2020 11:17 PM
> To: U-Boot Mailing List <u-boot at lists.denx.de>
> Cc: Bin Meng <bmeng.cn at gmail.com>; Stefan Roese <sr at denx.de>; Tom Rini <trini at konsulko.com>; Daniel
> Schwierzeck <daniel.schwierzeck at gmail.com>; Simon Glass <sjg at chromium.org>; Alexey Brodkin
> <abrodkin at synopsys.com>
> Subject: [PATCH v2 17/39] 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 at chromium.org>

Acked-by: Alexey Brodkin <abrodkin at synopsys.com>
Bin Meng May 17, 2020, 2:05 p.m. UTC | #2
On Mon, May 11, 2020 at 4:17 AM Simon Glass <sjg at chromium.org> wrote:
>
> 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 at chromium.org>
> ---
>
> Changes in v2:
> - Fix up inadvertent merge of PowerPC/ARM/m68k/arc patches
>
>  cmd/bdinfo.c | 12 +-----------
>  1 file changed, 1 insertion(+), 11 deletions(-)
>

Reviewed-by: Bin Meng <bmeng.cn at gmail.com>
diff mbox series

Patch

diff --git a/cmd/bdinfo.c b/cmd/bdinfo.c
index 9cf3da4725..f07f92463c 100644
--- a/cmd/bdinfo.c
+++ b/cmd/bdinfo.c
@@ -215,17 +215,7 @@  static inline void __maybe_unused print_std_bdinfo(const bd_t *bd)
 
 #elif defined(CONFIG_ARC)
 
-int do_bdinfo(cmd_tbl_t *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)