mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-24 21:54:01 +00:00
Fix syntax error
This statement has an unmatched parentheses, fix it. Signed-off-by: Leo Yu-Chi Liang <ycliang@andestech.com> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
This commit is contained in:
parent
5f888ab951
commit
990e1e4bea
1 changed files with 1 additions and 1 deletions
|
@ -898,7 +898,7 @@ int boot_get_kbd(struct lmb *lmb, struct bd_info **kbd)
|
|||
debug("## kernel board info at 0x%08lx\n", (ulong)*kbd);
|
||||
|
||||
#if defined(DEBUG)
|
||||
if (IS_ENABLED(CONFIG_CMD_BDI)
|
||||
if (IS_ENABLED(CONFIG_CMD_BDI))
|
||||
do_bdinfo(NULL, 0, 0, NULL);
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Reference in a new issue