diff options
| author | Tom Rini <[email protected]> | 2022-03-18 08:38:29 -0400 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2022-03-25 12:01:15 +0000 |
| commit | 3e2ea3278efba6189dd9644438c64de4017fa027 (patch) | |
| tree | db96c35a1e3b49c8b3ba8b7c93f5cc2cb8227b15 /drivers | |
| parent | 286c4531ad4bdc75ea0420201f388e9fb21076ef (diff) | |
Convert CONFIG_LCD_INFO et al to Kconfig
This converts the following to Kconfig:
CONFIG_LCD_INFO
CONFIG_LCD_LOGO
CONFIG_LCD_INFO_BELOW_LOGO
CONFIG_LCD_IN_PSRAM
Cc: Anatolij Gustschin <[email protected]>
Signed-off-by: Tom Rini <[email protected]>
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/video/Kconfig | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/drivers/video/Kconfig b/drivers/video/Kconfig index 82d4569eab7..1bf7f4a8084 100644 --- a/drivers/video/Kconfig +++ b/drivers/video/Kconfig @@ -828,6 +828,18 @@ config LCD CONFIG option. See the README for details. Drives which have been converted to driver model will instead used CONFIG_DM_VIDEO. +config LCD_INFO + bool "Show LCD info on-screen" + depends on LCD + +config LCD_LOGO + bool "Show a logo on screen" + depends on LCD + +config LCD_INFO_BELOW_LOGO + bool "Show LCD info below the on-screen logo" + depends on LCD_INFO && LCD_LOGO + config VIDEO_DW_HDMI bool help |
