aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Keeping <john@metanate.com>2022-11-23 17:16:14 +0000
committerTom Rini <trini@konsulko.com>2022-11-23 13:22:44 -0500
commit67fc9a9206580820d69f3cba33721b68775dcbaf (patch)
treedf19c453b4885039658042fcedad137a1c066ac2
parenta501a9f4bfef09dfb5deaf7c93834e7652adc901 (diff)
downloadu-boot-WIP/2022-11-23-assorted-fixes.zip
u-boot-WIP/2022-11-23-assorted-fixes.tar.gz
u-boot-WIP/2022-11-23-assorted-fixes.tar.bz2
cmd: fix dependency for CMD_CLSWIP/2022-11-23-assorted-fixes
It seems this symbol was missed when renaming DM_VIDEO -> VIDEO. Update it. Fixes: b86986c7b3 ("video: Rename CONFIG_DM_VIDEO to CONFIG_VIDEO") Signed-off-by: John Keeping <john@metanate.com>
-rw-r--r--cmd/Kconfig2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig
index 1092fb9..79848cc 100644
--- a/cmd/Kconfig
+++ b/cmd/Kconfig
@@ -1959,7 +1959,7 @@ config CMD_CONITRACE
config CMD_CLS
bool "Enable clear screen command 'cls'"
- default y if LCD || DM_VIDEO
+ default y if LCD || VIDEO
help
Enable the 'cls' command which clears the screen contents
on video frame buffer.