From 5d0b813d6e4749da2cc8672216ea0f5b9b1b350f Mon Sep 17 00:00:00 2001 From: Osama Abdelkader Date: Sun, 14 Sep 2025 17:27:51 +0200 Subject: [PATCH] imls: remove return parentheses return is not a function, parentheses are not required Signed-off-by: Osama Abdelkader --- cmd/bootm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/bootm.c b/cmd/bootm.c index bee683d0580..2c5aea26d98 100644 --- a/cmd/bootm.c +++ b/cmd/bootm.c @@ -572,7 +572,7 @@ static int do_imls(struct cmd_tbl *cmdtp, int flag, int argc, if (ret_nand) return ret_nand; - return (0); + return 0; } U_BOOT_CMD( -- 2.47.3