Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

drm/panel: ilitek-ili9806e: rename to specific DSI driver

The Ilitek ILI9806E controller can support different transport buses,
such as MIPI-DSI and SPI. The current implementation is specific to
the MIPI-DSI interface.

In preparation for adding SPI support, rename the current Kconfig
symbol and files to be DSI-specific, clarifying the current scope
of the code.

Since DRM_PANEL_ILITEK_ILI9806E is not used in any in-tree defconfig,
the symbol is renamed directly to DRM_PANEL_ILITEK_ILI9806E_DSI without
providing a legacy compatibility alias.

Signed-off-by: Dario Binacchi <dario.binacchi@amarulasolutions.com>
Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org>
Signed-off-by: Neil Armstrong <neil.armstrong@linaro.org>
Link: https://patch.msgid.link/20260318073346.18041-2-dario.binacchi@amarulasolutions.com

authored by

Dario Binacchi and committed by
Neil Armstrong
3bdd847a a7c61963

+6 -6
+1 -1
MAINTAINERS
··· 8028 8028 DRM DRIVER FOR ILITEK ILI9806E PANELS 8029 8029 M: Michael Walle <mwalle@kernel.org> 8030 8030 S: Maintained 8031 - F: drivers/gpu/drm/panel/panel-ilitek-ili9806e.c 8031 + F: drivers/gpu/drm/panel/panel-ilitek-ili9806e-dsi.c 8032 8032 8033 8033 DRM DRIVER FOR JADARD JD9365DA-H3 MIPI-DSI LCD PANELS 8034 8034 M: Jagan Teki <jagan@edgeble.ai>
+3 -3
drivers/gpu/drm/panel/Kconfig
··· 268 268 Say Y if you want to enable support for panels based on the 269 269 Ilitek ILI9805 controller. 270 270 271 - config DRM_PANEL_ILITEK_ILI9806E 272 - tristate "Ilitek ILI9806E-based panels" 271 + config DRM_PANEL_ILITEK_ILI9806E_DSI 272 + tristate "Ilitek ILI9806E-based DSI panels" 273 273 depends on OF 274 274 depends on DRM_MIPI_DSI 275 275 depends on BACKLIGHT_CLASS_DEVICE 276 276 help 277 277 Say Y if you want to enable support for panels based on the 278 - Ilitek ILI9806E controller. 278 + Ilitek ILI9806E controller using DSI. 279 279 280 280 config DRM_PANEL_ILITEK_ILI9881C 281 281 tristate "Ilitek ILI9881C-based panels"
+1 -1
drivers/gpu/drm/panel/Makefile
··· 27 27 obj-$(CONFIG_DRM_PANEL_ILITEK_IL9322) += panel-ilitek-ili9322.o 28 28 obj-$(CONFIG_DRM_PANEL_ILITEK_ILI9341) += panel-ilitek-ili9341.o 29 29 obj-$(CONFIG_DRM_PANEL_ILITEK_ILI9805) += panel-ilitek-ili9805.o 30 - obj-$(CONFIG_DRM_PANEL_ILITEK_ILI9806E) += panel-ilitek-ili9806e.o 30 + obj-$(CONFIG_DRM_PANEL_ILITEK_ILI9806E_DSI) += panel-ilitek-ili9806e-dsi.o 31 31 obj-$(CONFIG_DRM_PANEL_ILITEK_ILI9881C) += panel-ilitek-ili9881c.o 32 32 obj-$(CONFIG_DRM_PANEL_ILITEK_ILI9882T) += panel-ilitek-ili9882t.o 33 33 obj-$(CONFIG_DRM_PANEL_INNOLUX_EJ030NA) += panel-innolux-ej030na.o
+1 -1
drivers/gpu/drm/panel/panel-ilitek-ili9806e.c drivers/gpu/drm/panel/panel-ilitek-ili9806e-dsi.c
··· 561 561 562 562 MODULE_AUTHOR("Gunnar Dibbern <gunnar.dibbern@lht.dlh.de>"); 563 563 MODULE_AUTHOR("Michael Walle <mwalle@kernel.org>"); 564 - MODULE_DESCRIPTION("Ilitek ILI9806E Controller Driver"); 564 + MODULE_DESCRIPTION("Ilitek ILI9806E Controller DSI Driver"); 565 565 MODULE_LICENSE("GPL");