summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2022-10-18 16:19:42 +0300
committerAnatolij Gustschin <agust@denx.de>2022-10-30 22:07:17 +0300
commit8b1129588cc66cee3dc5ee2dd969007a641f21b0 (patch)
treeb668d49c3a7362b2e239833327e32493cec8a21d
parentd32eb92e9138214694efc9091f3760e445ce3905 (diff)
downloadu-boot-8b1129588cc66cee3dc5ee2dd969007a641f21b0.tar.xz
video: Drop CONFIG_LCD
This option is not used anymore. Drop it. Signed-off-by: Simon Glass <sjg@chromium.org>
-rw-r--r--cmd/Kconfig2
-rw-r--r--drivers/video/Kconfig16
2 files changed, 5 insertions, 13 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig
index 6cbc8f1fa2..9aac534416 100644
--- a/cmd/Kconfig
+++ b/cmd/Kconfig
@@ -1877,7 +1877,7 @@ menu "Misc commands"
config CMD_BMP
bool "Enable 'bmp' command"
- depends on LCD || DM_VIDEO
+ depends on DM_VIDEO
help
This provides a way to obtain information about a BMP-format image
and to display it. BMP (which presumably stands for BitMaP) is a
diff --git a/drivers/video/Kconfig b/drivers/video/Kconfig
index b4a6e8ea15..83dba632c1 100644
--- a/drivers/video/Kconfig
+++ b/drivers/video/Kconfig
@@ -702,7 +702,7 @@ source "drivers/video/nexell/Kconfig"
config CONSOLE_SCROLL_LINES
int "Number of lines to scroll the console by"
- depends on DM_VIDEO || LCD
+ depends on DM_VIDEO
default 1
help
When the console need to be scrolled, this is the number of
@@ -710,14 +710,6 @@ config CONSOLE_SCROLL_LINES
console jump but can help speed up operation when scrolling
is slow.
-config LCD
- bool "Enable legacy LCD support"
- help
- Define this to enable LCD support (for output to LCD display).
- You will also need to select an LCD driver using an additional
- CONFIG option. See the README for details. Drives which have been
- converted to driver model will instead used CONFIG_DM_VIDEO.
-
config VIDEO_DW_HDMI
bool
help
@@ -920,19 +912,19 @@ config VIDEO_BMP_RLE8
config BMP_16BPP
bool "16-bit-per-pixel BMP image support"
- depends on DM_VIDEO || LCD
+ depends on DM_VIDEO
help
Support display of bitmaps file with 16-bit-per-pixel
config BMP_24BPP
bool "24-bit-per-pixel BMP image support"
- depends on DM_VIDEO || LCD
+ depends on DM_VIDEO
help
Support display of bitmaps file with 24-bit-per-pixel.
config BMP_32BPP
bool "32-bit-per-pixel BMP image support"
- depends on DM_VIDEO || LCD
+ depends on DM_VIDEO
help
Support display of bitmaps file with 32-bit-per-pixel.