diff options
author | Julian Braha <julianbraha@gmail.com> | 2021-02-22 16:55:02 -0500 |
---|---|---|
committer | Robert Foss <robert.foss@linaro.org> | 2021-04-01 16:36:42 +0200 |
commit | 62066d3164467167fc27b2383f67d097e39bf176 (patch) | |
tree | 928fbe1b16e41a5dd3cf9b0a528343c6f1f96d8c /drivers/gpu/drm/bridge | |
parent | a1c3be890440a1769ed6f822376a3e3ab0d42994 (diff) | |
download | linux-stable-62066d3164467167fc27b2383f67d097e39bf176.tar.gz linux-stable-62066d3164467167fc27b2383f67d097e39bf176.tar.bz2 linux-stable-62066d3164467167fc27b2383f67d097e39bf176.zip |
drivers: gpu: drm: bridge: fix kconfig dependency on DRM_KMS_HELPER
When DRM_TOSHIBA_TC358762 is enabled and DRM_KMS_HELPER is disabled,
Kbuild gives the following warning:
WARNING: unmet direct dependencies detected for DRM_PANEL_BRIDGE
Depends on [n]: HAS_IOMEM [=y] && DRM_BRIDGE [=y] && DRM_KMS_HELPER [=n]
Selected by [y]:
- DRM_TOSHIBA_TC358762 [=y] && HAS_IOMEM [=y] && DRM [=y] && DRM_BRIDGE [=y] && OF [=y]
This is because DRM_TOSHIBA_TC358762 selects DRM_PANEL_BRIDGE,
without depending on or selecting DRM_KMS_HELPER,
despite that config option depending on DRM_KMS_HELPER.
Signed-off-by: Julian Braha <julianbraha@gmail.com>
Reviewed-by: Robert Foss <robert.foss@linaro.org>
Signed-off-by: Robert Foss <robert.foss@linaro.org>
Link: https://patchwork.freedesktop.org/patch/msgid/20210222215502.24487-1-julianbraha@gmail.com
Diffstat (limited to 'drivers/gpu/drm/bridge')
-rw-r--r-- | drivers/gpu/drm/bridge/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpu/drm/bridge/Kconfig b/drivers/gpu/drm/bridge/Kconfig index dba62f92d051..7c15fc170510 100644 --- a/drivers/gpu/drm/bridge/Kconfig +++ b/drivers/gpu/drm/bridge/Kconfig @@ -210,6 +210,7 @@ config DRM_TOSHIBA_TC358762 tristate "TC358762 DSI/DPI bridge" depends on OF select DRM_MIPI_DSI + select DRM_KMS_HELPER select DRM_PANEL_BRIDGE help Toshiba TC358762 DSI/DPI bridge driver. |