summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorLeo Yu-Chi Liang <ycliang@andestech.com>2021-10-27 12:00:41 +0300
committerLeo Yu-Chi Liang <ycliang@andestech.com>2021-11-08 10:35:55 +0300
commit990e1e4beae546ddc9c50854c0588d1bea494cd2 (patch)
treef1b4c7b9f8ed9316873dd69a5e7da9c2094532e5 /common
parent5f888ab951518d56e5dccaa40ebe14b6f19b342a (diff)
downloadu-boot-990e1e4beae546ddc9c50854c0588d1bea494cd2.tar.xz
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>
Diffstat (limited to 'common')
-rw-r--r--common/image-board.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/image-board.c b/common/image-board.c
index e7660352e9..ddf30c6730 100644
--- a/common/image-board.c
+++ b/common/image-board.c
@@ -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