commit | f6f3d166fe69e1ebd9855997a4b9ce7c0328cb0c | [log] [tgz] |
---|---|---|
author | Sughosh Ganu <sughosh.ganu@linaro.org> | Wed Mar 19 16:50:03 2025 +0530 |
committer | Tom Rini <trini@konsulko.com> | Thu Apr 24 10:44:07 2025 -0600 |
tree | db28f7307221e33319219728cefa9d94ac72de6d | |
parent | 39a72a127503a6b825c194e6ad818ae7d3ca6857 [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 <sughosh.ganu@linaro.org>
diff --git a/cmd/cls.c b/cmd/cls.c index 4bee8a1..b1e0619 100644 --- a/cmd/cls.c +++ b/cmd/cls.c
@@ -18,4 +18,4 @@ 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", "");