"Das U-Boot" Source Tree
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

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>

authored by

Sughosh Ganu and committed by
Tom Rini
068eebd0 fd313530

+1 -1
+1 -1
cmd/cls.c
··· 18 18 return CMD_RET_SUCCESS; 19 19 } 20 20 21 - U_BOOT_CMD(cls, 1, 1, do_video_clear, "clear screen", ""); 21 + U_BOOT_CMD(cls, 1, 0, do_video_clear, "clear screen", "");