diff options
| author | Osama Abdelkader <[email protected]> | 2025-09-14 17:27:51 +0200 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-09-24 11:03:43 -0600 |
| commit | 5d0b813d6e4749da2cc8672216ea0f5b9b1b350f (patch) | |
| tree | 052daf7d31ef081e885167db06695386da1a9303 /cmd | |
| parent | 8558aaa3cf9065ab5ec9a0b241ce567e7393dbc3 (diff) | |
imls: remove return parentheses
return is not a function, parentheses are not required
Signed-off-by: Osama Abdelkader <[email protected]>
Diffstat (limited to 'cmd')
| -rw-r--r-- | cmd/bootm.c | 2 |
1 files changed, 1 insertions, 1 deletions
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( |
