1 // SPDX-License-Identifier: GPL-2.0+
4 * DENX Software Engineering, Anatolij Gustschin <agust@denx.de>
6 * cls - clear screen command
12 static int do_video_clear(struct cmd_tbl
*cmdtp
, int flag
, int argc
,
16 return CMD_RET_FAILURE
;
18 return CMD_RET_SUCCESS
;
21 U_BOOT_CMD(cls
, 1, 1, do_video_clear
, "clear screen", "");