* [PATCH 00/11] phy: drop unused module aliases
@ 2025-07-24 15:48 Johan Hovold
2025-07-24 15:48 ` [PATCH 01/11] phy: broadcom: brcm-sata: drop unused module alias Johan Hovold
` (13 more replies)
0 siblings, 14 replies; 15+ messages in thread
From: Johan Hovold @ 2025-07-24 15:48 UTC (permalink / raw)
To: Vinod Koul
Cc: Kishon Vijay Abraham I, Justin Chen, Al Cooper,
Sylwester Nawrocki, linux-phy, linux-kernel, Johan Hovold
When fixing up some device leaks in the TI drivers I noticed that the
commits introducing the leaks had also converted the drivers to only
support OF probe.
This series drops the unused platform module alias from the PHY drivers
that never have supported or no longer supports anything but OF probing.
Johan
Johan Hovold (11):
phy: broadcom: brcm-sata: drop unused module alias
phy: broadcom: brcm-usb: drop unused module alias
phy: cadence: Sierra: drop unused module alias
phy: hisilicon: hi6220-usb: drop unused module alias
phy: qualcomm: ipq806x-usb: drop unused module alias
phy: samsung: exynos5-usbdrd: drop unused module alias
phy: samsung: usb2: drop unused module alias
phy: ti: omap-usb2: drop unused module alias
phy: ti: ti-pipe3: drop unused module alias
phy: ti: dm816x-usb: drop unused module alias
phy: ti: omap-control: drop unused module alias
drivers/phy/broadcom/phy-brcm-sata.c | 1 -
drivers/phy/broadcom/phy-brcm-usb.c | 1 -
drivers/phy/cadence/phy-cadence-sierra.c | 1 -
drivers/phy/hisilicon/phy-hi6220-usb.c | 1 -
drivers/phy/qualcomm/phy-qcom-ipq806x-usb.c | 1 -
drivers/phy/samsung/phy-exynos5-usbdrd.c | 1 -
drivers/phy/samsung/phy-samsung-usb2.c | 1 -
drivers/phy/ti/phy-dm816x-usb.c | 1 -
drivers/phy/ti/phy-omap-control.c | 1 -
drivers/phy/ti/phy-omap-usb2.c | 1 -
drivers/phy/ti/phy-ti-pipe3.c | 1 -
11 files changed, 11 deletions(-)
--
2.49.1
^ permalink raw reply [flat|nested] 15+ messages in thread
* [PATCH 01/11] phy: broadcom: brcm-sata: drop unused module alias
2025-07-24 15:48 [PATCH 00/11] phy: drop unused module aliases Johan Hovold
@ 2025-07-24 15:48 ` Johan Hovold
2025-07-24 15:48 ` [PATCH 02/11] phy: broadcom: brcm-usb: " Johan Hovold
` (12 subsequent siblings)
13 siblings, 0 replies; 15+ messages in thread
From: Johan Hovold @ 2025-07-24 15:48 UTC (permalink / raw)
To: Vinod Koul
Cc: Kishon Vijay Abraham I, Justin Chen, Al Cooper,
Sylwester Nawrocki, linux-phy, linux-kernel, Johan Hovold
The driver has never supported anything but OF probe so drop the unused
platform module alias.
Signed-off-by: Johan Hovold <johan@kernel.org>
---
drivers/phy/broadcom/phy-brcm-sata.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/drivers/phy/broadcom/phy-brcm-sata.c b/drivers/phy/broadcom/phy-brcm-sata.c
index d52dd065e862..fb69e21a0292 100644
--- a/drivers/phy/broadcom/phy-brcm-sata.c
+++ b/drivers/phy/broadcom/phy-brcm-sata.c
@@ -850,4 +850,3 @@ MODULE_DESCRIPTION("Broadcom SATA PHY driver");
MODULE_LICENSE("GPL");
MODULE_AUTHOR("Marc Carino");
MODULE_AUTHOR("Brian Norris");
-MODULE_ALIAS("platform:phy-brcm-sata");
--
2.49.1
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [PATCH 02/11] phy: broadcom: brcm-usb: drop unused module alias
2025-07-24 15:48 [PATCH 00/11] phy: drop unused module aliases Johan Hovold
2025-07-24 15:48 ` [PATCH 01/11] phy: broadcom: brcm-sata: drop unused module alias Johan Hovold
@ 2025-07-24 15:48 ` Johan Hovold
2025-07-24 15:48 ` [PATCH 03/11] phy: cadence: Sierra: " Johan Hovold
` (11 subsequent siblings)
13 siblings, 0 replies; 15+ messages in thread
From: Johan Hovold @ 2025-07-24 15:48 UTC (permalink / raw)
To: Vinod Koul
Cc: Kishon Vijay Abraham I, Justin Chen, Al Cooper,
Sylwester Nawrocki, linux-phy, linux-kernel, Johan Hovold
Since commit 9d5f51dcdb64 ("phy: usb: Add support for new Synopsys USB
controller on the 7211b0") the driver only supports OF probe so drop the
unused platform module alias.
Signed-off-by: Johan Hovold <johan@kernel.org>
---
drivers/phy/broadcom/phy-brcm-usb.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/drivers/phy/broadcom/phy-brcm-usb.c b/drivers/phy/broadcom/phy-brcm-usb.c
index 0666864c2f77..59d756a10d6c 100644
--- a/drivers/phy/broadcom/phy-brcm-usb.c
+++ b/drivers/phy/broadcom/phy-brcm-usb.c
@@ -691,7 +691,6 @@ static struct platform_driver brcm_usb_driver = {
module_platform_driver(brcm_usb_driver);
-MODULE_ALIAS("platform:brcmstb-usb-phy");
MODULE_AUTHOR("Al Cooper <acooper@broadcom.com>");
MODULE_DESCRIPTION("BRCM USB PHY driver");
MODULE_LICENSE("GPL v2");
--
2.49.1
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [PATCH 03/11] phy: cadence: Sierra: drop unused module alias
2025-07-24 15:48 [PATCH 00/11] phy: drop unused module aliases Johan Hovold
2025-07-24 15:48 ` [PATCH 01/11] phy: broadcom: brcm-sata: drop unused module alias Johan Hovold
2025-07-24 15:48 ` [PATCH 02/11] phy: broadcom: brcm-usb: " Johan Hovold
@ 2025-07-24 15:48 ` Johan Hovold
2025-07-24 15:48 ` [PATCH 04/11] phy: hisilicon: hi6220-usb: " Johan Hovold
` (10 subsequent siblings)
13 siblings, 0 replies; 15+ messages in thread
From: Johan Hovold @ 2025-07-24 15:48 UTC (permalink / raw)
To: Vinod Koul
Cc: Kishon Vijay Abraham I, Justin Chen, Al Cooper,
Sylwester Nawrocki, linux-phy, linux-kernel, Johan Hovold
The driver has never supported anything but OF probe so drop the unused
platform module alias.
Signed-off-by: Johan Hovold <johan@kernel.org>
---
drivers/phy/cadence/phy-cadence-sierra.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/drivers/phy/cadence/phy-cadence-sierra.c b/drivers/phy/cadence/phy-cadence-sierra.c
index 45a5c00843bf..424a9ebd0d39 100644
--- a/drivers/phy/cadence/phy-cadence-sierra.c
+++ b/drivers/phy/cadence/phy-cadence-sierra.c
@@ -2739,7 +2739,6 @@ static struct platform_driver cdns_sierra_driver = {
};
module_platform_driver(cdns_sierra_driver);
-MODULE_ALIAS("platform:cdns_sierra");
MODULE_AUTHOR("Cadence Design Systems");
MODULE_DESCRIPTION("CDNS sierra phy driver");
MODULE_LICENSE("GPL v2");
--
2.49.1
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [PATCH 04/11] phy: hisilicon: hi6220-usb: drop unused module alias
2025-07-24 15:48 [PATCH 00/11] phy: drop unused module aliases Johan Hovold
` (2 preceding siblings ...)
2025-07-24 15:48 ` [PATCH 03/11] phy: cadence: Sierra: " Johan Hovold
@ 2025-07-24 15:48 ` Johan Hovold
2025-07-24 15:48 ` [PATCH 05/11] phy: qualcomm: ipq806x-usb: " Johan Hovold
` (9 subsequent siblings)
13 siblings, 0 replies; 15+ messages in thread
From: Johan Hovold @ 2025-07-24 15:48 UTC (permalink / raw)
To: Vinod Koul
Cc: Kishon Vijay Abraham I, Justin Chen, Al Cooper,
Sylwester Nawrocki, linux-phy, linux-kernel, Johan Hovold
The driver has never supported anything but OF probe so drop the unused
platform module alias.
Signed-off-by: Johan Hovold <johan@kernel.org>
---
drivers/phy/hisilicon/phy-hi6220-usb.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/drivers/phy/hisilicon/phy-hi6220-usb.c b/drivers/phy/hisilicon/phy-hi6220-usb.c
index 97bd363dfe87..22d8d8a8dabe 100644
--- a/drivers/phy/hisilicon/phy-hi6220-usb.c
+++ b/drivers/phy/hisilicon/phy-hi6220-usb.c
@@ -161,5 +161,4 @@ static struct platform_driver hi6220_phy_driver = {
module_platform_driver(hi6220_phy_driver);
MODULE_DESCRIPTION("HISILICON HI6220 USB PHY driver");
-MODULE_ALIAS("platform:hi6220-usb-phy");
MODULE_LICENSE("GPL");
--
2.49.1
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [PATCH 05/11] phy: qualcomm: ipq806x-usb: drop unused module alias
2025-07-24 15:48 [PATCH 00/11] phy: drop unused module aliases Johan Hovold
` (3 preceding siblings ...)
2025-07-24 15:48 ` [PATCH 04/11] phy: hisilicon: hi6220-usb: " Johan Hovold
@ 2025-07-24 15:48 ` Johan Hovold
2025-07-24 15:48 ` [PATCH 06/11] phy: samsung: exynos5-usbdrd: " Johan Hovold
` (8 subsequent siblings)
13 siblings, 0 replies; 15+ messages in thread
From: Johan Hovold @ 2025-07-24 15:48 UTC (permalink / raw)
To: Vinod Koul
Cc: Kishon Vijay Abraham I, Justin Chen, Al Cooper,
Sylwester Nawrocki, linux-phy, linux-kernel, Johan Hovold
The driver has never supported anything but OF probe so drop the unused
platform module alias.
Signed-off-by: Johan Hovold <johan@kernel.org>
---
drivers/phy/qualcomm/phy-qcom-ipq806x-usb.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/drivers/phy/qualcomm/phy-qcom-ipq806x-usb.c b/drivers/phy/qualcomm/phy-qcom-ipq806x-usb.c
index 06392ed7c91b..f22c0000479f 100644
--- a/drivers/phy/qualcomm/phy-qcom-ipq806x-usb.c
+++ b/drivers/phy/qualcomm/phy-qcom-ipq806x-usb.c
@@ -559,7 +559,6 @@ static struct platform_driver qcom_ipq806x_usb_phy_driver = {
module_platform_driver(qcom_ipq806x_usb_phy_driver);
-MODULE_ALIAS("platform:phy-qcom-ipq806x-usb");
MODULE_LICENSE("GPL v2");
MODULE_AUTHOR("Andy Gross <agross@codeaurora.org>");
MODULE_AUTHOR("Ivan T. Ivanov <iivanov@mm-sol.com>");
--
2.49.1
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [PATCH 06/11] phy: samsung: exynos5-usbdrd: drop unused module alias
2025-07-24 15:48 [PATCH 00/11] phy: drop unused module aliases Johan Hovold
` (4 preceding siblings ...)
2025-07-24 15:48 ` [PATCH 05/11] phy: qualcomm: ipq806x-usb: " Johan Hovold
@ 2025-07-24 15:48 ` Johan Hovold
2025-07-24 15:48 ` [PATCH 07/11] phy: samsung: usb2: " Johan Hovold
` (7 subsequent siblings)
13 siblings, 0 replies; 15+ messages in thread
From: Johan Hovold @ 2025-07-24 15:48 UTC (permalink / raw)
To: Vinod Koul
Cc: Kishon Vijay Abraham I, Justin Chen, Al Cooper,
Sylwester Nawrocki, linux-phy, linux-kernel, Johan Hovold
The driver has never supported anything but OF probe so drop the unused
platform module alias.
Signed-off-by: Johan Hovold <johan@kernel.org>
---
drivers/phy/samsung/phy-exynos5-usbdrd.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/drivers/phy/samsung/phy-exynos5-usbdrd.c b/drivers/phy/samsung/phy-exynos5-usbdrd.c
index 917a76d584f0..804539d26cc7 100644
--- a/drivers/phy/samsung/phy-exynos5-usbdrd.c
+++ b/drivers/phy/samsung/phy-exynos5-usbdrd.c
@@ -2385,4 +2385,3 @@ module_platform_driver(exynos5_usb3drd_phy);
MODULE_DESCRIPTION("Samsung Exynos5 SoCs USB 3.0 DRD controller PHY driver");
MODULE_AUTHOR("Vivek Gautam <gautam.vivek@samsung.com>");
MODULE_LICENSE("GPL v2");
-MODULE_ALIAS("platform:exynos5_usb3drd_phy");
--
2.49.1
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [PATCH 07/11] phy: samsung: usb2: drop unused module alias
2025-07-24 15:48 [PATCH 00/11] phy: drop unused module aliases Johan Hovold
` (5 preceding siblings ...)
2025-07-24 15:48 ` [PATCH 06/11] phy: samsung: exynos5-usbdrd: " Johan Hovold
@ 2025-07-24 15:48 ` Johan Hovold
2025-07-24 15:48 ` [PATCH 08/11] phy: ti: omap-usb2: " Johan Hovold
` (6 subsequent siblings)
13 siblings, 0 replies; 15+ messages in thread
From: Johan Hovold @ 2025-07-24 15:48 UTC (permalink / raw)
To: Vinod Koul
Cc: Kishon Vijay Abraham I, Justin Chen, Al Cooper,
Sylwester Nawrocki, linux-phy, linux-kernel, Johan Hovold
The driver has never supported anything but OF probe so drop the unused
platform module alias.
Signed-off-by: Johan Hovold <johan@kernel.org>
---
drivers/phy/samsung/phy-samsung-usb2.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/drivers/phy/samsung/phy-samsung-usb2.c b/drivers/phy/samsung/phy-samsung-usb2.c
index 9de744cd6f39..d2749b67cf8f 100644
--- a/drivers/phy/samsung/phy-samsung-usb2.c
+++ b/drivers/phy/samsung/phy-samsung-usb2.c
@@ -258,4 +258,3 @@ module_platform_driver(samsung_usb2_phy_driver);
MODULE_DESCRIPTION("Samsung S5P/Exynos SoC USB PHY driver");
MODULE_AUTHOR("Kamil Debski <k.debski@samsung.com>");
MODULE_LICENSE("GPL v2");
-MODULE_ALIAS("platform:samsung-usb2-phy");
--
2.49.1
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [PATCH 08/11] phy: ti: omap-usb2: drop unused module alias
2025-07-24 15:48 [PATCH 00/11] phy: drop unused module aliases Johan Hovold
` (6 preceding siblings ...)
2025-07-24 15:48 ` [PATCH 07/11] phy: samsung: usb2: " Johan Hovold
@ 2025-07-24 15:48 ` Johan Hovold
2025-07-24 15:48 ` [PATCH 09/11] phy: ti: ti-pipe3: " Johan Hovold
` (5 subsequent siblings)
13 siblings, 0 replies; 15+ messages in thread
From: Johan Hovold @ 2025-07-24 15:48 UTC (permalink / raw)
To: Vinod Koul
Cc: Kishon Vijay Abraham I, Justin Chen, Al Cooper,
Sylwester Nawrocki, linux-phy, linux-kernel, Johan Hovold
Since commit 478b6c7436c2 ("usb: phy: omap-usb2: Don't use
omap_get_control_dev()") the driver only supports OF probe so drop the
unused platform module alias.
Signed-off-by: Johan Hovold <johan@kernel.org>
---
drivers/phy/ti/phy-omap-usb2.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/drivers/phy/ti/phy-omap-usb2.c b/drivers/phy/ti/phy-omap-usb2.c
index c444bb2530ca..1eb252604441 100644
--- a/drivers/phy/ti/phy-omap-usb2.c
+++ b/drivers/phy/ti/phy-omap-usb2.c
@@ -533,7 +533,6 @@ static struct platform_driver omap_usb2_driver = {
module_platform_driver(omap_usb2_driver);
-MODULE_ALIAS("platform:omap_usb2");
MODULE_AUTHOR("Texas Instruments Inc.");
MODULE_DESCRIPTION("OMAP USB2 phy driver");
MODULE_LICENSE("GPL v2");
--
2.49.1
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [PATCH 09/11] phy: ti: ti-pipe3: drop unused module alias
2025-07-24 15:48 [PATCH 00/11] phy: drop unused module aliases Johan Hovold
` (7 preceding siblings ...)
2025-07-24 15:48 ` [PATCH 08/11] phy: ti: omap-usb2: " Johan Hovold
@ 2025-07-24 15:48 ` Johan Hovold
2025-07-24 15:48 ` [PATCH 10/11] phy: ti: dm816x-usb: " Johan Hovold
` (4 subsequent siblings)
13 siblings, 0 replies; 15+ messages in thread
From: Johan Hovold @ 2025-07-24 15:48 UTC (permalink / raw)
To: Vinod Koul
Cc: Kishon Vijay Abraham I, Justin Chen, Al Cooper,
Sylwester Nawrocki, linux-phy, linux-kernel, Johan Hovold
Since commit 918ee0d21ba4 ("usb: phy: omap-usb3: Don't use
omap_get_control_dev()") the driver only supports OF probe so drop the
unused platform module alias.
Signed-off-by: Johan Hovold <johan@kernel.org>
---
drivers/phy/ti/phy-ti-pipe3.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/drivers/phy/ti/phy-ti-pipe3.c b/drivers/phy/ti/phy-ti-pipe3.c
index ae764d6524c9..b5543b5c674c 100644
--- a/drivers/phy/ti/phy-ti-pipe3.c
+++ b/drivers/phy/ti/phy-ti-pipe3.c
@@ -942,7 +942,6 @@ static struct platform_driver ti_pipe3_driver = {
module_platform_driver(ti_pipe3_driver);
-MODULE_ALIAS("platform:ti_pipe3");
MODULE_AUTHOR("Texas Instruments Inc.");
MODULE_DESCRIPTION("TI PIPE3 phy driver");
MODULE_LICENSE("GPL v2");
--
2.49.1
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [PATCH 10/11] phy: ti: dm816x-usb: drop unused module alias
2025-07-24 15:48 [PATCH 00/11] phy: drop unused module aliases Johan Hovold
` (8 preceding siblings ...)
2025-07-24 15:48 ` [PATCH 09/11] phy: ti: ti-pipe3: " Johan Hovold
@ 2025-07-24 15:48 ` Johan Hovold
2025-07-24 15:48 ` [PATCH 11/11] phy: ti: omap-control: " Johan Hovold
` (3 subsequent siblings)
13 siblings, 0 replies; 15+ messages in thread
From: Johan Hovold @ 2025-07-24 15:48 UTC (permalink / raw)
To: Vinod Koul
Cc: Kishon Vijay Abraham I, Justin Chen, Al Cooper,
Sylwester Nawrocki, linux-phy, linux-kernel, Johan Hovold
The driver has never supported anything but OF probe so drop the unused
platform module alias.
Signed-off-by: Johan Hovold <johan@kernel.org>
---
drivers/phy/ti/phy-dm816x-usb.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/drivers/phy/ti/phy-dm816x-usb.c b/drivers/phy/ti/phy-dm816x-usb.c
index e8f842d4e841..d274831b731c 100644
--- a/drivers/phy/ti/phy-dm816x-usb.c
+++ b/drivers/phy/ti/phy-dm816x-usb.c
@@ -269,7 +269,6 @@ static struct platform_driver dm816x_usb_phy_driver = {
module_platform_driver(dm816x_usb_phy_driver);
-MODULE_ALIAS("platform:dm816x_usb");
MODULE_AUTHOR("Tony Lindgren <tony@atomide.com>");
MODULE_DESCRIPTION("dm816x usb phy driver");
MODULE_LICENSE("GPL v2");
--
2.49.1
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [PATCH 11/11] phy: ti: omap-control: drop unused module alias
2025-07-24 15:48 [PATCH 00/11] phy: drop unused module aliases Johan Hovold
` (9 preceding siblings ...)
2025-07-24 15:48 ` [PATCH 10/11] phy: ti: dm816x-usb: " Johan Hovold
@ 2025-07-24 15:48 ` Johan Hovold
2025-08-06 14:29 ` [PATCH 00/11] phy: drop unused module aliases neil.armstrong
` (2 subsequent siblings)
13 siblings, 0 replies; 15+ messages in thread
From: Johan Hovold @ 2025-07-24 15:48 UTC (permalink / raw)
To: Vinod Koul
Cc: Kishon Vijay Abraham I, Justin Chen, Al Cooper,
Sylwester Nawrocki, linux-phy, linux-kernel, Johan Hovold
Since commit 4fd06af96b93 ("usb: phy: omap-control: Get rid of platform
data") the driver only supports OF probe so drop the unused platform
module alias.
Signed-off-by: Johan Hovold <johan@kernel.org>
---
drivers/phy/ti/phy-omap-control.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/drivers/phy/ti/phy-omap-control.c b/drivers/phy/ti/phy-omap-control.c
index 2fdb8f4241c7..4968434312f8 100644
--- a/drivers/phy/ti/phy-omap-control.c
+++ b/drivers/phy/ti/phy-omap-control.c
@@ -334,7 +334,6 @@ static void __exit omap_control_phy_exit(void)
}
module_exit(omap_control_phy_exit);
-MODULE_ALIAS("platform:omap_control_phy");
MODULE_AUTHOR("Texas Instruments Inc.");
MODULE_DESCRIPTION("OMAP Control Module PHY Driver");
MODULE_LICENSE("GPL v2");
--
2.49.1
^ permalink raw reply related [flat|nested] 15+ messages in thread
* Re: [PATCH 00/11] phy: drop unused module aliases
2025-07-24 15:48 [PATCH 00/11] phy: drop unused module aliases Johan Hovold
` (10 preceding siblings ...)
2025-07-24 15:48 ` [PATCH 11/11] phy: ti: omap-control: " Johan Hovold
@ 2025-08-06 14:29 ` neil.armstrong
2025-08-06 15:57 ` neil.armstrong
2025-08-12 16:41 ` Vinod Koul
13 siblings, 0 replies; 15+ messages in thread
From: neil.armstrong @ 2025-08-06 14:29 UTC (permalink / raw)
To: Johan Hovold, Vinod Koul
Cc: Kishon Vijay Abraham I, Justin Chen, Al Cooper,
Sylwester Nawrocki, linux-phy, linux-kernel
On 24/07/2025 17:48, Johan Hovold wrote:
> When fixing up some device leaks in the TI drivers I noticed that the
> commits introducing the leaks had also converted the drivers to only
> support OF probe.
>
> This series drops the unused platform module alias from the PHY drivers
> that never have supported or no longer supports anything but OF probing.
>
> Johan
>
>
> Johan Hovold (11):
> phy: broadcom: brcm-sata: drop unused module alias
> phy: broadcom: brcm-usb: drop unused module alias
> phy: cadence: Sierra: drop unused module alias
> phy: hisilicon: hi6220-usb: drop unused module alias
> phy: qualcomm: ipq806x-usb: drop unused module alias
> phy: samsung: exynos5-usbdrd: drop unused module alias
> phy: samsung: usb2: drop unused module alias
> phy: ti: omap-usb2: drop unused module alias
> phy: ti: ti-pipe3: drop unused module alias
> phy: ti: dm816x-usb: drop unused module alias
> phy: ti: omap-control: drop unused module alias
>
> drivers/phy/broadcom/phy-brcm-sata.c | 1 -
> drivers/phy/broadcom/phy-brcm-usb.c | 1 -
> drivers/phy/cadence/phy-cadence-sierra.c | 1 -
> drivers/phy/hisilicon/phy-hi6220-usb.c | 1 -
> drivers/phy/qualcomm/phy-qcom-ipq806x-usb.c | 1 -
> drivers/phy/samsung/phy-exynos5-usbdrd.c | 1 -
> drivers/phy/samsung/phy-samsung-usb2.c | 1 -
> drivers/phy/ti/phy-dm816x-usb.c | 1 -
> drivers/phy/ti/phy-omap-control.c | 1 -
> drivers/phy/ti/phy-omap-usb2.c | 1 -
> drivers/phy/ti/phy-ti-pipe3.c | 1 -
> 11 files changed, 11 deletions(-)
>
Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org>
^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCH 00/11] phy: drop unused module aliases
2025-07-24 15:48 [PATCH 00/11] phy: drop unused module aliases Johan Hovold
` (11 preceding siblings ...)
2025-08-06 14:29 ` [PATCH 00/11] phy: drop unused module aliases neil.armstrong
@ 2025-08-06 15:57 ` neil.armstrong
2025-08-12 16:41 ` Vinod Koul
13 siblings, 0 replies; 15+ messages in thread
From: neil.armstrong @ 2025-08-06 15:57 UTC (permalink / raw)
To: Johan Hovold, Vinod Koul
Cc: Kishon Vijay Abraham I, Justin Chen, Al Cooper,
Sylwester Nawrocki, linux-phy, linux-kernel
On 24/07/2025 17:48, Johan Hovold wrote:
> When fixing up some device leaks in the TI drivers I noticed that the
> commits introducing the leaks had also converted the drivers to only
> support OF probe.
>
> This series drops the unused platform module alias from the PHY drivers
> that never have supported or no longer supports anything but OF probing.
>
> Johan
>
>
> Johan Hovold (11):
> phy: broadcom: brcm-sata: drop unused module alias
> phy: broadcom: brcm-usb: drop unused module alias
> phy: cadence: Sierra: drop unused module alias
> phy: hisilicon: hi6220-usb: drop unused module alias
> phy: qualcomm: ipq806x-usb: drop unused module alias
> phy: samsung: exynos5-usbdrd: drop unused module alias
> phy: samsung: usb2: drop unused module alias
> phy: ti: omap-usb2: drop unused module alias
> phy: ti: ti-pipe3: drop unused module alias
> phy: ti: dm816x-usb: drop unused module alias
> phy: ti: omap-control: drop unused module alias
>
> drivers/phy/broadcom/phy-brcm-sata.c | 1 -
> drivers/phy/broadcom/phy-brcm-usb.c | 1 -
> drivers/phy/cadence/phy-cadence-sierra.c | 1 -
> drivers/phy/hisilicon/phy-hi6220-usb.c | 1 -
> drivers/phy/qualcomm/phy-qcom-ipq806x-usb.c | 1 -
> drivers/phy/samsung/phy-exynos5-usbdrd.c | 1 -
> drivers/phy/samsung/phy-samsung-usb2.c | 1 -
> drivers/phy/ti/phy-dm816x-usb.c | 1 -
> drivers/phy/ti/phy-omap-control.c | 1 -
> drivers/phy/ti/phy-omap-usb2.c | 1 -
> drivers/phy/ti/phy-ti-pipe3.c | 1 -
> 11 files changed, 11 deletions(-)
>
Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org>
^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCH 00/11] phy: drop unused module aliases
2025-07-24 15:48 [PATCH 00/11] phy: drop unused module aliases Johan Hovold
` (12 preceding siblings ...)
2025-08-06 15:57 ` neil.armstrong
@ 2025-08-12 16:41 ` Vinod Koul
13 siblings, 0 replies; 15+ messages in thread
From: Vinod Koul @ 2025-08-12 16:41 UTC (permalink / raw)
To: Johan Hovold
Cc: Kishon Vijay Abraham I, Justin Chen, Al Cooper,
Sylwester Nawrocki, linux-phy, linux-kernel
On Thu, 24 Jul 2025 17:48:12 +0200, Johan Hovold wrote:
> When fixing up some device leaks in the TI drivers I noticed that the
> commits introducing the leaks had also converted the drivers to only
> support OF probe.
>
> This series drops the unused platform module alias from the PHY drivers
> that never have supported or no longer supports anything but OF probing.
>
> [...]
Applied, thanks!
[01/11] phy: broadcom: brcm-sata: drop unused module alias
commit: b4e1e9108c948896661ecf5c61a29f6086e53f38
[02/11] phy: broadcom: brcm-usb: drop unused module alias
commit: 33e64f6e38b2dccbaba8c3533cd0c45e1245c205
[03/11] phy: cadence: Sierra: drop unused module alias
commit: d81e02d02b5f0c0f53e6cfb8982489fdacd546b6
[04/11] phy: hisilicon: hi6220-usb: drop unused module alias
commit: b4d4af09092b50b940b37892445f0ae5a007e888
[05/11] phy: qualcomm: ipq806x-usb: drop unused module alias
commit: 8cbb931b8ac285cd1ec46f8764a91a627704ccab
[06/11] phy: samsung: exynos5-usbdrd: drop unused module alias
commit: a4c3d8015f4298d90d4d145101dd04de8854e6f9
[07/11] phy: samsung: usb2: drop unused module alias
commit: 7ee2e0347cc781f0f87777558218961c51ec6aba
[08/11] phy: ti: omap-usb2: drop unused module alias
commit: 36d20c023bfe98eb999ec5ba4f051460f6080564
[09/11] phy: ti: ti-pipe3: drop unused module alias
commit: e709cc0741e8f155a39174d97eb9ae9c0cba2623
[10/11] phy: ti: dm816x-usb: drop unused module alias
commit: 00837ae34f6321f9b6c290f92eb369e7f9259d41
[11/11] phy: ti: omap-control: drop unused module alias
commit: e04f91e1d881120ff97389960cf7c765d510213e
Best regards,
--
~Vinod
^ permalink raw reply [flat|nested] 15+ messages in thread
end of thread, other threads:[~2025-08-12 16:41 UTC | newest]
Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-07-24 15:48 [PATCH 00/11] phy: drop unused module aliases Johan Hovold
2025-07-24 15:48 ` [PATCH 01/11] phy: broadcom: brcm-sata: drop unused module alias Johan Hovold
2025-07-24 15:48 ` [PATCH 02/11] phy: broadcom: brcm-usb: " Johan Hovold
2025-07-24 15:48 ` [PATCH 03/11] phy: cadence: Sierra: " Johan Hovold
2025-07-24 15:48 ` [PATCH 04/11] phy: hisilicon: hi6220-usb: " Johan Hovold
2025-07-24 15:48 ` [PATCH 05/11] phy: qualcomm: ipq806x-usb: " Johan Hovold
2025-07-24 15:48 ` [PATCH 06/11] phy: samsung: exynos5-usbdrd: " Johan Hovold
2025-07-24 15:48 ` [PATCH 07/11] phy: samsung: usb2: " Johan Hovold
2025-07-24 15:48 ` [PATCH 08/11] phy: ti: omap-usb2: " Johan Hovold
2025-07-24 15:48 ` [PATCH 09/11] phy: ti: ti-pipe3: " Johan Hovold
2025-07-24 15:48 ` [PATCH 10/11] phy: ti: dm816x-usb: " Johan Hovold
2025-07-24 15:48 ` [PATCH 11/11] phy: ti: omap-control: " Johan Hovold
2025-08-06 14:29 ` [PATCH 00/11] phy: drop unused module aliases neil.armstrong
2025-08-06 15:57 ` neil.armstrong
2025-08-12 16:41 ` Vinod Koul
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).