Skip to content

Commit 3bdd847

Browse files
passgatsuperna9999
authored andcommitted
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
1 parent a7c6196 commit 3bdd847

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

MAINTAINERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8028,7 +8028,7 @@ F: drivers/gpu/drm/panel/panel-ilitek-ili9805.c
80288028
DRM DRIVER FOR ILITEK ILI9806E PANELS
80298029
M: Michael Walle <mwalle@kernel.org>
80308030
S: Maintained
8031-
F: drivers/gpu/drm/panel/panel-ilitek-ili9806e.c
8031+
F: drivers/gpu/drm/panel/panel-ilitek-ili9806e-dsi.c
80328032

80338033
DRM DRIVER FOR JADARD JD9365DA-H3 MIPI-DSI LCD PANELS
80348034
M: Jagan Teki <jagan@edgeble.ai>

drivers/gpu/drm/panel/Kconfig

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -268,14 +268,14 @@ config DRM_PANEL_ILITEK_ILI9805
268268
Say Y if you want to enable support for panels based on the
269269
Ilitek ILI9805 controller.
270270

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"
273273
depends on OF
274274
depends on DRM_MIPI_DSI
275275
depends on BACKLIGHT_CLASS_DEVICE
276276
help
277277
Say Y if you want to enable support for panels based on the
278-
Ilitek ILI9806E controller.
278+
Ilitek ILI9806E controller using DSI.
279279

280280
config DRM_PANEL_ILITEK_ILI9881C
281281
tristate "Ilitek ILI9881C-based panels"

drivers/gpu/drm/panel/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ obj-$(CONFIG_DRM_PANEL_HYDIS_HV101HD1) += panel-hydis-hv101hd1.o
2727
obj-$(CONFIG_DRM_PANEL_ILITEK_IL9322) += panel-ilitek-ili9322.o
2828
obj-$(CONFIG_DRM_PANEL_ILITEK_ILI9341) += panel-ilitek-ili9341.o
2929
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
3131
obj-$(CONFIG_DRM_PANEL_ILITEK_ILI9881C) += panel-ilitek-ili9881c.o
3232
obj-$(CONFIG_DRM_PANEL_ILITEK_ILI9882T) += panel-ilitek-ili9882t.o
3333
obj-$(CONFIG_DRM_PANEL_INNOLUX_EJ030NA) += panel-innolux-ej030na.o

drivers/gpu/drm/panel/panel-ilitek-ili9806e.c renamed to drivers/gpu/drm/panel/panel-ilitek-ili9806e-dsi.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -561,5 +561,5 @@ module_mipi_dsi_driver(ili9806e_dsi_driver);
561561

562562
MODULE_AUTHOR("Gunnar Dibbern <gunnar.dibbern@lht.dlh.de>");
563563
MODULE_AUTHOR("Michael Walle <mwalle@kernel.org>");
564-
MODULE_DESCRIPTION("Ilitek ILI9806E Controller Driver");
564+
MODULE_DESCRIPTION("Ilitek ILI9806E Controller DSI Driver");
565565
MODULE_LICENSE("GPL");

0 commit comments

Comments
 (0)