diff mbox series

Fix syntax error

Message ID 20211027090041.2143-1-ycliang@andestech.com
State Accepted
Delegated to: Andes
Headers show
Series Fix syntax error | expand

Commit Message

Leo Liang Oct. 27, 2021, 9 a.m. UTC
This statement has an unmatched parentheses, fix it.

Signed-off-by: Leo Yu-Chi Liang <ycliang@andestech.com>
---
 common/image-board.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Bin Meng Oct. 27, 2021, 12:12 p.m. UTC | #1
On Wed, Oct 27, 2021 at 5:01 PM Leo Yu-Chi Liang <ycliang@andestech.com> wrote:
>
> This statement has an unmatched parentheses, fix it.
>
> Signed-off-by: Leo Yu-Chi Liang <ycliang@andestech.com>
> ---
>  common/image-board.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>

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

Patch

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