diff options
author | Arnd Bergmann <arnd@arndb.de> | 2023-07-24 15:17:05 +0300 |
---|---|---|
committer | Paul Cercueil <paul@crapouillou.net> | 2023-07-24 23:00:39 +0300 |
commit | b30cb96623e9ffb949627a33f33b4668b0d8af5c (patch) | |
tree | 8da8b9794782531d0c1f5592eb295aa591192320 /drivers/gpu/drm/panel/Kconfig | |
parent | 9c053ef5c8d4c0675756c3fca059f338fdf1d37b (diff) | |
download | linux-b30cb96623e9ffb949627a33f33b4668b0d8af5c.tar.xz |
drm/panel: ld9040: add backlight Kconfig dependency
The driver now uses the backlight interface, which breaks when that
is disabled:
ld.lld: error: undefined symbol: devm_backlight_device_register
Enforce the necessary Kconfig dependency to avoid this.
Fixes: c2268daa65fb ("drm/panel: ld9040: Register a backlight device")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Reviewed-by: Sam Ravnborg <sam@ravnborg.org>
Signed-off-by: Paul Cercueil <paul@crapouillou.net>
Link: https://patchwork.freedesktop.org/patch/msgid/20230724121736.1293270-1-arnd@kernel.org
Diffstat (limited to 'drivers/gpu/drm/panel/Kconfig')
-rw-r--r-- | drivers/gpu/drm/panel/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpu/drm/panel/Kconfig b/drivers/gpu/drm/panel/Kconfig index 1a0fd0754692..05f9e800e448 100644 --- a/drivers/gpu/drm/panel/Kconfig +++ b/drivers/gpu/drm/panel/Kconfig @@ -300,6 +300,7 @@ config DRM_PANEL_LEADTEK_LTK500HD1829 config DRM_PANEL_SAMSUNG_LD9040 tristate "Samsung LD9040 RGB/SPI panel" depends on OF && SPI + depends on BACKLIGHT_CLASS_DEVICE select VIDEOMODE_HELPERS config DRM_PANEL_LG_LB035Q02 |