From: John Keeping <john@metanate.com>
Date: Wed, 23 Nov 2022 17:16:14 +0000 (+0000)
Subject: cmd: fix dependency for CMD_CLS
X-Git-Tag: v2025.01-rc5-pxa1908~1201^2
X-Git-Url: http://git.dujemihanovic.xyz/posts?a=commitdiff_plain;h=2fdc4c0c49ed8624322c856c82bb15e4536e25a3;p=u-boot.git

cmd: fix dependency for CMD_CLS

It seems this symbol was missed when renaming DM_VIDEO -> VIDEO.  Update
it.

Fixes: b86986c7b3 ("video: Rename CONFIG_DM_VIDEO to CONFIG_VIDEO")
Reviewed-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Signed-off-by: John Keeping <john@metanate.com>
---

diff --git a/cmd/Kconfig b/cmd/Kconfig
index 1092fb9c91..79848cc6ab 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.