diff options
author | Bin Meng | 2023-07-23 12:40:34 +0800 |
---|---|---|
committer | Leo Yu-Chi Liang | 2023-08-02 16:31:58 +0800 |
commit | 142276ce51ba97eade1b70c7c7c91e0ada428284 (patch) | |
tree | 99713ec7e6210ac61d93510f7f33e660ce2dc7e1 /common | |
parent | 716161663ec4904f0487308dd428ceb8b42bcf5d (diff) |
console: kconfig: Drop the redundant VIDEO dependency
The VIDEO dependency is described twice in CONSOLE_MUX.
Signed-off-by: Bin Meng <bmeng@tinylab.org>
Reviewed-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'common')
-rw-r--r-- | common/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/Kconfig b/common/Kconfig index 973482f0756..d103bc6ddb8 100644 --- a/common/Kconfig +++ b/common/Kconfig @@ -226,7 +226,7 @@ config CONSOLE_FLUSH_SUPPORT config CONSOLE_MUX bool "Enable console multiplexing" - default y if VIDEO || VIDEO || LCD + default y if VIDEO || LCD help This allows multiple devices to be used for each console 'file'. For example, stdout can be set to go to serial and video. |