From: Sughosh Ganu Date: Wed, 19 Mar 2025 11:20:03 +0000 (+0530) Subject: cmd: cls: do not repeat clearing of console X-Git-Tag: v2025.07-rc1~22 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=068eebd065ce7f4dc1ffeacc6a15a41982561015;p=pandora-u-boot.git 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 --- 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", "");