mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-29 08:01:08 +00:00
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 <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
This commit is contained in:
parent
271db508cc
commit
f41b830f24
1 changed files with 1 additions and 12 deletions
13
cmd/bdinfo.c
13
cmd/bdinfo.c
|
@ -327,18 +327,7 @@ static int do_bdinfo(struct cmd_tbl *cmdtp, int flag, int argc,
|
||||||
|
|
||||||
#elif defined(CONFIG_SH)
|
#elif defined(CONFIG_SH)
|
||||||
|
|
||||||
int do_bdinfo(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
|
#define USE_GENERIC
|
||||||
{
|
|
||||||
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;
|
|
||||||
}
|
|
||||||
|
|
||||||
#elif defined(CONFIG_X86)
|
#elif defined(CONFIG_X86)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue