[PATCH] 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") Signed-off-by: John Keeping john@metanate.com --- cmd/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
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.

On 11/23/22 18:16, John Keeping wrote:
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
Reviewed-by: Heinrich Schuchardt xypron.glpk@gmx.de
cmd/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
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.

Hi,
On Wed, 23 Nov 2022 at 13:18, Heinrich Schuchardt xypron.glpk@gmx.de wrote:
On 11/23/22 18:16, John Keeping wrote:
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
Reviewed-by: Heinrich Schuchardt xypron.glpk@gmx.de
cmd/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
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
actually LCD is gone now
help Enable the 'cls' command which clears the screen contents on video frame buffer.
Regards, SImon

On Wed, Nov 23, 2022 at 05:16:14PM +0000, John Keeping wrote:
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
Applied to u-boot/master, thanks!
participants (4)
-
Heinrich Schuchardt
-
John Keeping
-
Simon Glass
-
Tom Rini