From: Leo Yu-Chi Liang Date: Wed, 27 Oct 2021 09:00:41 +0000 (+0800) Subject: Fix syntax error X-Git-Tag: v2022.01~55^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=990e1e4beae546ddc9c50854c0588d1bea494cd2;p=platform%2Fkernel%2Fu-boot.git Fix syntax error This statement has an unmatched parentheses, fix it. Signed-off-by: Leo Yu-Chi Liang Reviewed-by: Bin Meng --- diff --git a/common/image-board.c b/common/image-board.c index e766035..ddf30c6 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