mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-25 06:00:43 +00:00
video: Drop CONFIG_LCD
This option is not used anymore. Drop it. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
d32eb92e91
commit
8b1129588c
2 changed files with 5 additions and 13 deletions
|
@ -1877,7 +1877,7 @@ menu "Misc commands"
|
||||||
|
|
||||||
config CMD_BMP
|
config CMD_BMP
|
||||||
bool "Enable 'bmp' command"
|
bool "Enable 'bmp' command"
|
||||||
depends on LCD || DM_VIDEO
|
depends on DM_VIDEO
|
||||||
help
|
help
|
||||||
This provides a way to obtain information about a BMP-format image
|
This provides a way to obtain information about a BMP-format image
|
||||||
and to display it. BMP (which presumably stands for BitMaP) is a
|
and to display it. BMP (which presumably stands for BitMaP) is a
|
||||||
|
|
|
@ -702,7 +702,7 @@ source "drivers/video/nexell/Kconfig"
|
||||||
|
|
||||||
config CONSOLE_SCROLL_LINES
|
config CONSOLE_SCROLL_LINES
|
||||||
int "Number of lines to scroll the console by"
|
int "Number of lines to scroll the console by"
|
||||||
depends on DM_VIDEO || LCD
|
depends on DM_VIDEO
|
||||||
default 1
|
default 1
|
||||||
help
|
help
|
||||||
When the console need to be scrolled, this is the number of
|
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
|
console jump but can help speed up operation when scrolling
|
||||||
is slow.
|
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
|
config VIDEO_DW_HDMI
|
||||||
bool
|
bool
|
||||||
help
|
help
|
||||||
|
@ -920,19 +912,19 @@ config VIDEO_BMP_RLE8
|
||||||
|
|
||||||
config BMP_16BPP
|
config BMP_16BPP
|
||||||
bool "16-bit-per-pixel BMP image support"
|
bool "16-bit-per-pixel BMP image support"
|
||||||
depends on DM_VIDEO || LCD
|
depends on DM_VIDEO
|
||||||
help
|
help
|
||||||
Support display of bitmaps file with 16-bit-per-pixel
|
Support display of bitmaps file with 16-bit-per-pixel
|
||||||
|
|
||||||
config BMP_24BPP
|
config BMP_24BPP
|
||||||
bool "24-bit-per-pixel BMP image support"
|
bool "24-bit-per-pixel BMP image support"
|
||||||
depends on DM_VIDEO || LCD
|
depends on DM_VIDEO
|
||||||
help
|
help
|
||||||
Support display of bitmaps file with 24-bit-per-pixel.
|
Support display of bitmaps file with 24-bit-per-pixel.
|
||||||
|
|
||||||
config BMP_32BPP
|
config BMP_32BPP
|
||||||
bool "32-bit-per-pixel BMP image support"
|
bool "32-bit-per-pixel BMP image support"
|
||||||
depends on DM_VIDEO || LCD
|
depends on DM_VIDEO
|
||||||
help
|
help
|
||||||
Support display of bitmaps file with 32-bit-per-pixel.
|
Support display of bitmaps file with 32-bit-per-pixel.
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue