* [PATCH 0/4] drm/imx: drop unused module aliases
@ 2025-09-24 9:26 Johan Hovold
2025-09-24 9:26 ` [PATCH 1/4] drm/imx/dw-hdmi: drop unused module alias Johan Hovold
` (7 more replies)
0 siblings, 8 replies; 9+ messages in thread
From: Johan Hovold @ 2025-09-24 9:26 UTC (permalink / raw)
To: Philipp Zabel
Cc: Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, David Airlie,
Simona Vetter, Sascha Hauer, Fabio Estevam, dri-devel, imx,
linux-kernel, Johan Hovold
When fixing up a device reference leak in the tve drivers I noticed it
had an unused platform alias. This series drops unused aliases from the
imx drm drivers.
Johan
Johan Hovold (4):
drm/imx/dw-hdmi: drop unused module alias
drm/imx/ldb: drop unused module alias
drm/imx/tve: drop unused module alias
drm/imx/parallel-display: drop unused module alias
drivers/gpu/drm/imx/ipuv3/dw_hdmi-imx.c | 1 -
drivers/gpu/drm/imx/ipuv3/imx-ldb.c | 1 -
drivers/gpu/drm/imx/ipuv3/imx-tve.c | 1 -
drivers/gpu/drm/imx/ipuv3/parallel-display.c | 1 -
4 files changed, 4 deletions(-)
--
2.49.1
^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH 1/4] drm/imx/dw-hdmi: drop unused module alias
2025-09-24 9:26 [PATCH 0/4] drm/imx: drop unused module aliases Johan Hovold
@ 2025-09-24 9:26 ` Johan Hovold
2025-09-24 9:26 ` [PATCH 2/4] drm/imx/ldb: " Johan Hovold
` (6 subsequent siblings)
7 siblings, 0 replies; 9+ messages in thread
From: Johan Hovold @ 2025-09-24 9:26 UTC (permalink / raw)
To: Philipp Zabel
Cc: Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, David Airlie,
Simona Vetter, Sascha Hauer, Fabio Estevam, dri-devel, imx,
linux-kernel, Johan Hovold
The driver has never supported anything but OF probe so drop the unused
platform module alias which was incorrectly added by commit 3d1b35a3d9f3
("drm: imx: imx-hdmi: convert imx-hdmi to drm_bridge mode").
Signed-off-by: Johan Hovold <johan@kernel.org>
---
drivers/gpu/drm/imx/ipuv3/dw_hdmi-imx.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/drivers/gpu/drm/imx/ipuv3/dw_hdmi-imx.c b/drivers/gpu/drm/imx/ipuv3/dw_hdmi-imx.c
index 8333c4bf7369..07e5f96202d4 100644
--- a/drivers/gpu/drm/imx/ipuv3/dw_hdmi-imx.c
+++ b/drivers/gpu/drm/imx/ipuv3/dw_hdmi-imx.c
@@ -278,4 +278,3 @@ MODULE_AUTHOR("Andy Yan <andy.yan@rock-chips.com>");
MODULE_AUTHOR("Yakir Yang <ykk@rock-chips.com>");
MODULE_DESCRIPTION("IMX6 Specific DW-HDMI Driver Extension");
MODULE_LICENSE("GPL");
-MODULE_ALIAS("platform:dwhdmi-imx");
--
2.49.1
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH 2/4] drm/imx/ldb: drop unused module alias
2025-09-24 9:26 [PATCH 0/4] drm/imx: drop unused module aliases Johan Hovold
2025-09-24 9:26 ` [PATCH 1/4] drm/imx/dw-hdmi: drop unused module alias Johan Hovold
@ 2025-09-24 9:26 ` Johan Hovold
2025-09-24 9:26 ` [PATCH 3/4] drm/imx/tve: " Johan Hovold
` (5 subsequent siblings)
7 siblings, 0 replies; 9+ messages in thread
From: Johan Hovold @ 2025-09-24 9:26 UTC (permalink / raw)
To: Philipp Zabel
Cc: Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, David Airlie,
Simona Vetter, Sascha Hauer, Fabio Estevam, dri-devel, imx,
linux-kernel, Johan Hovold
The driver has never supported anything but OF probe so drop the unused
platform module alias incorrectly added by commit bc627387a951
("imx-drm: imx-ldb: Add MODULE_ALIAS()").
Signed-off-by: Johan Hovold <johan@kernel.org>
---
drivers/gpu/drm/imx/ipuv3/imx-ldb.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/drivers/gpu/drm/imx/ipuv3/imx-ldb.c b/drivers/gpu/drm/imx/ipuv3/imx-ldb.c
index 6be7a57ad03d..626d410d9150 100644
--- a/drivers/gpu/drm/imx/ipuv3/imx-ldb.c
+++ b/drivers/gpu/drm/imx/ipuv3/imx-ldb.c
@@ -644,4 +644,3 @@ module_platform_driver(imx_ldb_driver);
MODULE_DESCRIPTION("i.MX LVDS driver");
MODULE_AUTHOR("Sascha Hauer, Pengutronix");
MODULE_LICENSE("GPL");
-MODULE_ALIAS("platform:" DRIVER_NAME);
--
2.49.1
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH 3/4] drm/imx/tve: drop unused module alias
2025-09-24 9:26 [PATCH 0/4] drm/imx: drop unused module aliases Johan Hovold
2025-09-24 9:26 ` [PATCH 1/4] drm/imx/dw-hdmi: drop unused module alias Johan Hovold
2025-09-24 9:26 ` [PATCH 2/4] drm/imx/ldb: " Johan Hovold
@ 2025-09-24 9:26 ` Johan Hovold
2025-09-24 9:26 ` [PATCH 4/4] drm/imx/parallel-display: " Johan Hovold
` (4 subsequent siblings)
7 siblings, 0 replies; 9+ messages in thread
From: Johan Hovold @ 2025-09-24 9:26 UTC (permalink / raw)
To: Philipp Zabel
Cc: Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, David Airlie,
Simona Vetter, Sascha Hauer, Fabio Estevam, dri-devel, imx,
linux-kernel, Johan Hovold
The driver has never supported anything but OF probe so drop the
unused platform module alias incorrectly added by commit 52db752c3de5
("imx-drm: imx-tve: Add MODULE_ALIAS()").
Signed-off-by: Johan Hovold <johan@kernel.org>
---
drivers/gpu/drm/imx/ipuv3/imx-tve.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/drivers/gpu/drm/imx/ipuv3/imx-tve.c b/drivers/gpu/drm/imx/ipuv3/imx-tve.c
index 895413d26113..31d93f59abe0 100644
--- a/drivers/gpu/drm/imx/ipuv3/imx-tve.c
+++ b/drivers/gpu/drm/imx/ipuv3/imx-tve.c
@@ -686,4 +686,3 @@ module_platform_driver(imx_tve_driver);
MODULE_DESCRIPTION("i.MX Television Encoder driver");
MODULE_AUTHOR("Philipp Zabel, Pengutronix");
MODULE_LICENSE("GPL");
-MODULE_ALIAS("platform:imx-tve");
--
2.49.1
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH 4/4] drm/imx/parallel-display: drop unused module alias
2025-09-24 9:26 [PATCH 0/4] drm/imx: drop unused module aliases Johan Hovold
` (2 preceding siblings ...)
2025-09-24 9:26 ` [PATCH 3/4] drm/imx/tve: " Johan Hovold
@ 2025-09-24 9:26 ` Johan Hovold
2025-09-24 14:46 ` [PATCH 0/4] drm/imx: drop unused module aliases Frank Li
` (3 subsequent siblings)
7 siblings, 0 replies; 9+ messages in thread
From: Johan Hovold @ 2025-09-24 9:26 UTC (permalink / raw)
To: Philipp Zabel
Cc: Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, David Airlie,
Simona Vetter, Sascha Hauer, Fabio Estevam, dri-devel, imx,
linux-kernel, Johan Hovold
The driver has never supported anything but OF probe so drop the unused
platform module alias incorrectly added by commit b2da05ff4797
("imx-drm: parallel-display: Add MODULE_ALIAS()")
Signed-off-by: Johan Hovold <johan@kernel.org>
---
drivers/gpu/drm/imx/ipuv3/parallel-display.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/drivers/gpu/drm/imx/ipuv3/parallel-display.c b/drivers/gpu/drm/imx/ipuv3/parallel-display.c
index 6d8325c76697..f2f36f425664 100644
--- a/drivers/gpu/drm/imx/ipuv3/parallel-display.c
+++ b/drivers/gpu/drm/imx/ipuv3/parallel-display.c
@@ -286,4 +286,3 @@ module_platform_driver(imx_pd_driver);
MODULE_DESCRIPTION("i.MX parallel display driver");
MODULE_AUTHOR("Sascha Hauer, Pengutronix");
MODULE_LICENSE("GPL");
-MODULE_ALIAS("platform:imx-parallel-display");
--
2.49.1
^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [PATCH 0/4] drm/imx: drop unused module aliases
2025-09-24 9:26 [PATCH 0/4] drm/imx: drop unused module aliases Johan Hovold
` (3 preceding siblings ...)
2025-09-24 9:26 ` [PATCH 4/4] drm/imx/parallel-display: " Johan Hovold
@ 2025-09-24 14:46 ` Frank Li
2025-09-24 21:37 ` Dmitry Baryshkov
` (2 subsequent siblings)
7 siblings, 0 replies; 9+ messages in thread
From: Frank Li @ 2025-09-24 14:46 UTC (permalink / raw)
To: Johan Hovold
Cc: Philipp Zabel, Maarten Lankhorst, Maxime Ripard,
Thomas Zimmermann, David Airlie, Simona Vetter, Sascha Hauer,
Fabio Estevam, dri-devel, imx, linux-kernel
On Wed, Sep 24, 2025 at 11:26:39AM +0200, Johan Hovold wrote:
> When fixing up a device reference leak in the tve drivers I noticed it
> had an unused platform alias. This series drops unused aliases from the
> imx drm drivers.
>
Reviewed-by: Frank Li <Frank.Li@nxp.com>
> Johan
>
>
> Johan Hovold (4):
> drm/imx/dw-hdmi: drop unused module alias
> drm/imx/ldb: drop unused module alias
> drm/imx/tve: drop unused module alias
> drm/imx/parallel-display: drop unused module alias
>
> drivers/gpu/drm/imx/ipuv3/dw_hdmi-imx.c | 1 -
> drivers/gpu/drm/imx/ipuv3/imx-ldb.c | 1 -
> drivers/gpu/drm/imx/ipuv3/imx-tve.c | 1 -
> drivers/gpu/drm/imx/ipuv3/parallel-display.c | 1 -
> 4 files changed, 4 deletions(-)
>
> --
> 2.49.1
>
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH 0/4] drm/imx: drop unused module aliases
2025-09-24 9:26 [PATCH 0/4] drm/imx: drop unused module aliases Johan Hovold
` (4 preceding siblings ...)
2025-09-24 14:46 ` [PATCH 0/4] drm/imx: drop unused module aliases Frank Li
@ 2025-09-24 21:37 ` Dmitry Baryshkov
2025-10-27 13:36 ` Johan Hovold
2025-10-30 15:46 ` Philipp Zabel
7 siblings, 0 replies; 9+ messages in thread
From: Dmitry Baryshkov @ 2025-09-24 21:37 UTC (permalink / raw)
To: Johan Hovold
Cc: Philipp Zabel, Maarten Lankhorst, Maxime Ripard,
Thomas Zimmermann, David Airlie, Simona Vetter, Sascha Hauer,
Fabio Estevam, dri-devel, imx, linux-kernel
On Wed, Sep 24, 2025 at 11:26:39AM +0200, Johan Hovold wrote:
> When fixing up a device reference leak in the tve drivers I noticed it
> had an unused platform alias. This series drops unused aliases from the
> imx drm drivers.
>
> Johan
>
For the series:
Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com>
--
With best wishes
Dmitry
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH 0/4] drm/imx: drop unused module aliases
2025-09-24 9:26 [PATCH 0/4] drm/imx: drop unused module aliases Johan Hovold
` (5 preceding siblings ...)
2025-09-24 21:37 ` Dmitry Baryshkov
@ 2025-10-27 13:36 ` Johan Hovold
2025-10-30 15:46 ` Philipp Zabel
7 siblings, 0 replies; 9+ messages in thread
From: Johan Hovold @ 2025-10-27 13:36 UTC (permalink / raw)
To: Philipp Zabel
Cc: Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, David Airlie,
Simona Vetter, Sascha Hauer, Fabio Estevam, dri-devel, imx,
linux-kernel
On Wed, Sep 24, 2025 at 11:26:39AM +0200, Johan Hovold wrote:
> When fixing up a device reference leak in the tve drivers I noticed it
> had an unused platform alias. This series drops unused aliases from the
> imx drm drivers.
Can these be picked up for 6.19?
Johan
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH 0/4] drm/imx: drop unused module aliases
2025-09-24 9:26 [PATCH 0/4] drm/imx: drop unused module aliases Johan Hovold
` (6 preceding siblings ...)
2025-10-27 13:36 ` Johan Hovold
@ 2025-10-30 15:46 ` Philipp Zabel
7 siblings, 0 replies; 9+ messages in thread
From: Philipp Zabel @ 2025-10-30 15:46 UTC (permalink / raw)
To: Johan Hovold
Cc: Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, David Airlie,
Simona Vetter, Sascha Hauer, Fabio Estevam, dri-devel, imx,
linux-kernel
On Mi, 2025-09-24 at 11:26 +0200, Johan Hovold wrote:
> When fixing up a device reference leak in the tve drivers I noticed it
> had an unused platform alias. This series drops unused aliases from the
> imx drm drivers.
Thank you, applied to drm-misc-next.
regards
Philipp
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2025-10-30 15:46 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-09-24 9:26 [PATCH 0/4] drm/imx: drop unused module aliases Johan Hovold
2025-09-24 9:26 ` [PATCH 1/4] drm/imx/dw-hdmi: drop unused module alias Johan Hovold
2025-09-24 9:26 ` [PATCH 2/4] drm/imx/ldb: " Johan Hovold
2025-09-24 9:26 ` [PATCH 3/4] drm/imx/tve: " Johan Hovold
2025-09-24 9:26 ` [PATCH 4/4] drm/imx/parallel-display: " Johan Hovold
2025-09-24 14:46 ` [PATCH 0/4] drm/imx: drop unused module aliases Frank Li
2025-09-24 21:37 ` Dmitry Baryshkov
2025-10-27 13:36 ` Johan Hovold
2025-10-30 15:46 ` Philipp Zabel
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).