DRM_MIPI_DSI is currently a bool, but there's no reason to not be allowed to build it as a loadable module.
Moreover being a bool prevents DRM_MIPI_DSI to depend on a tristate module that is configured as 'm'. Signed-off-by: Luca Ceresoli <[email protected]> --- drivers/gpu/drm/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/Kconfig b/drivers/gpu/drm/Kconfig index 081660f3a0f2..3093d5f30724 100644 --- a/drivers/gpu/drm/Kconfig +++ b/drivers/gpu/drm/Kconfig @@ -43,7 +43,7 @@ config DRM_MIPI_DBI select DRM_KMS_HELPER config DRM_MIPI_DSI - bool + tristate depends on DRM config DRM_KMS_HELPER -- 2.54.0
