cmd: cls: do not repeat clearing of console

There is no need to repeat the command to clear the console. Remove
it's repeat attribute.

Signed-off-by: Sughosh Ganu <sughosh.ganu@linaro.org>
This commit is contained in:
Sughosh Ganu
2025-03-19 16:50:03 +05:30
committed by Tom Rini
parent fd313530ae
commit 068eebd065

View File

@@ -18,4 +18,4 @@ static int do_video_clear(struct cmd_tbl *cmdtp, int flag, int argc,
return CMD_RET_SUCCESS; return CMD_RET_SUCCESS;
} }
U_BOOT_CMD(cls, 1, 1, do_video_clear, "clear screen", ""); U_BOOT_CMD(cls, 1, 0, do_video_clear, "clear screen", "");