summaryrefslogtreecommitdiff
path: root/cmd/cls.c
diff options
context:
space:
mode:
authorSughosh Ganu <[email protected]>2025-03-19 16:50:03 +0530
committerTom Rini <[email protected]>2025-04-24 10:44:07 -0600
commit068eebd065ce7f4dc1ffeacc6a15a41982561015 (patch)
treedb28f7307221e33319219728cefa9d94ac72de6d /cmd/cls.c
parentfd313530ae79e96f1b7a9edbf2bb98908985e6ba (diff)
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 <[email protected]>
Diffstat (limited to 'cmd/cls.c')
-rw-r--r--cmd/cls.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/cls.c b/cmd/cls.c
index 4bee8a18305..b1e0619334b 100644
--- a/cmd/cls.c
+++ b/cmd/cls.c
@@ -18,4 +18,4 @@ static int do_video_clear(struct cmd_tbl *cmdtp, int flag, int argc,
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", "");