diff options
author | Arnd Bergmann <arnd@arndb.de> | 2023-01-17 19:54:50 +0300 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2023-01-17 21:21:03 +0300 |
commit | 499631d5ae7dd0aacc9601b71a3b80d2b27d9120 (patch) | |
tree | 10fcce7217f97f9681a33d7beba44b6872f1af91 /drivers/gpu/drm/panel/Kconfig | |
parent | 6b9748f86816f4e25e40d5fdbf7089f73a2051f7 (diff) | |
download | linux-499631d5ae7dd0aacc9601b71a3b80d2b27d9120.tar.xz |
drm: panel: visionox: add backlight dependency
The newly added driver uses the backlight subsystem but is missing the
corresponding Kconfig dependency:
arm-linux-gnueabi-ld: drivers/gpu/drm/panel/panel-visionox-vtdr6130.o: in function `visionox_vtdr6130_probe':
panel-visionox-vtdr6130.c:(.text+0xdee): undefined reference to `devm_backlight_device_register'
Fixes: 65dc9360f741 ("drm: panel: Add Himax HX8394 panel controller driver")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Link: https://patchwork.freedesktop.org/patch/msgid/20230117165522.2104380-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 dd79928f5482..8f2046caaa6b 100644 --- a/drivers/gpu/drm/panel/Kconfig +++ b/drivers/gpu/drm/panel/Kconfig @@ -742,6 +742,7 @@ config DRM_PANEL_VISIONOX_VTDR6130 tristate "Visionox VTDR6130" depends on OF depends on DRM_MIPI_DSI + depends on BACKLIGHT_CLASS_DEVICE help Say Y here if you want to enable support for Visionox VTDR6130 1080x2400 AMOLED DSI panel. |