summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2023-02-05 15:44:27 -0700
committerTom Rini <trini@konsulko.com>2023-02-10 07:41:40 -0500
commit1f69cbe1f129136ae1a38b0a68660bfce72df629 (patch)
tree50f8163f867150c04b60cf3742d5f11a8196b3e4 /cmd
parent0ff8bb872423f7433b0165cbc10d23be1771af7c (diff)
Correct SPL uses of VIDEO
This converts 2 usages of this option to the non-SPL form, since there is no SPL_VIDEO defined in Kconfig Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'cmd')
-rw-r--r--cmd/cls.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/cls.c b/cmd/cls.c
index 18643ec024..787c7edbee 100644
--- a/cmd/cls.c
+++ b/cmd/cls.c
@@ -19,7 +19,7 @@ static int do_video_clear(struct cmd_tbl *cmdtp, int flag, int argc,
/* Send clear screen and home */
printf(CSI "2J" CSI "1;1H");
- if (CONFIG_IS_ENABLED(VIDEO) && !CONFIG_IS_ENABLED(VIDEO_ANSI)) {
+ if (IS_ENABLED(CONFIG_VIDEO) && !CONFIG_IS_ENABLED(VIDEO_ANSI)) {
if (uclass_first_device_err(UCLASS_VIDEO, &dev))
return CMD_RET_FAILURE;
if (video_clear(dev))