[PATCH] drm/panel: s6e3ha8: fix unmet dependency on DRM_DISPLAY_HELPER

Julian Braha posted 1 patch 1 week, 6 days ago
drivers/gpu/drm/panel/Kconfig | 1 +
1 file changed, 1 insertion(+)
[PATCH] drm/panel: s6e3ha8: fix unmet dependency on DRM_DISPLAY_HELPER
Posted by Julian Braha 1 week, 6 days ago
Currently, DRM_PANEL_SAMSUNG_S6E3HA8 selects DRM_DISPLAY_DSC_HELPER
without ensuring its dependency, DRM_DISPLAY_HELPER, is enabled,
causing an unmet dependency.

Let's select DRM_DISPLAY_HELPER as other similar options do.

This unmet dependency bug was found by kconfirm, a static analysis tool
for Kconfig.

Fixes: fd3b2c5f40a1 ("drm/panel: s6e3ha8: select CONFIG_DRM_DISPLAY_DSC_HELPER")
Signed-off-by: Julian Braha <julianbraha@gmail.com>
---
 drivers/gpu/drm/panel/Kconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/gpu/drm/panel/Kconfig b/drivers/gpu/drm/panel/Kconfig
index 103f1d09a989..ecff57ceeef1 100644
--- a/drivers/gpu/drm/panel/Kconfig
+++ b/drivers/gpu/drm/panel/Kconfig
@@ -1010,6 +1010,7 @@ config DRM_PANEL_SAMSUNG_S6E3HA8
 	depends on OF
 	depends on DRM_MIPI_DSI
 	depends on BACKLIGHT_CLASS_DEVICE
+	select DRM_DISPLAY_HELPER
 	select DRM_DISPLAY_DSC_HELPER
 	help
 	  Say Y or M here if you want to enable support for the
-- 
2.54.0
Re: [PATCH] drm/panel: s6e3ha8: fix unmet dependency on DRM_DISPLAY_HELPER
Posted by Neil Armstrong 3 days, 8 hours ago
Hi,

On Sun, 12 Jul 2026 01:15:14 +0100, Julian Braha wrote:
> Currently, DRM_PANEL_SAMSUNG_S6E3HA8 selects DRM_DISPLAY_DSC_HELPER
> without ensuring its dependency, DRM_DISPLAY_HELPER, is enabled,
> causing an unmet dependency.
> 
> Let's select DRM_DISPLAY_HELPER as other similar options do.
> 
> This unmet dependency bug was found by kconfirm, a static analysis tool
> for Kconfig.
> 
> [...]

Thanks, Applied to https://gitlab.freedesktop.org/drm/misc/kernel.git (drm-misc-fixes)

[1/1] drm/panel: s6e3ha8: fix unmet dependency on DRM_DISPLAY_HELPER
      https://gitlab.freedesktop.org/drm/misc/kernel/-/commit/3667bc164849fee4f1b18b182bdfe643f758ca17

-- 
Neil
Re: [PATCH] drm/panel: s6e3ha8: fix unmet dependency on DRM_DISPLAY_HELPER
Posted by neil.armstrong@linaro.org 5 days, 9 hours ago
On 7/12/26 02:15, Julian Braha wrote:
> Currently, DRM_PANEL_SAMSUNG_S6E3HA8 selects DRM_DISPLAY_DSC_HELPER
> without ensuring its dependency, DRM_DISPLAY_HELPER, is enabled,
> causing an unmet dependency.
> 
> Let's select DRM_DISPLAY_HELPER as other similar options do.
> 
> This unmet dependency bug was found by kconfirm, a static analysis tool
> for Kconfig.
> 
> Fixes: fd3b2c5f40a1 ("drm/panel: s6e3ha8: select CONFIG_DRM_DISPLAY_DSC_HELPER")
> Signed-off-by: Julian Braha <julianbraha@gmail.com>
> ---
>   drivers/gpu/drm/panel/Kconfig | 1 +
>   1 file changed, 1 insertion(+)
> 
> diff --git a/drivers/gpu/drm/panel/Kconfig b/drivers/gpu/drm/panel/Kconfig
> index 103f1d09a989..ecff57ceeef1 100644
> --- a/drivers/gpu/drm/panel/Kconfig
> +++ b/drivers/gpu/drm/panel/Kconfig
> @@ -1010,6 +1010,7 @@ config DRM_PANEL_SAMSUNG_S6E3HA8
>   	depends on OF
>   	depends on DRM_MIPI_DSI
>   	depends on BACKLIGHT_CLASS_DEVICE
> +	select DRM_DISPLAY_HELPER
>   	select DRM_DISPLAY_DSC_HELPER
>   	help
>   	  Say Y or M here if you want to enable support for the

Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org>

Thanks,
Neil