[PATCH] imls: remove return parentheses

Osama Abdelkader osama.abdelkader at gmail.com
Sun Sep 14 17:27:51 CEST 2025


return is not a function, parentheses are not required

Signed-off-by: Osama Abdelkader <osama.abdelkader at gmail.com>
---
 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.43.0



More information about the U-Boot mailing list