* [PATCH] usb: musb: mpfs: tidy up error handling in probe()
@ 2026-09-14 17:14 Felix Gu
2026-09-15 18:21 ` Conor Dooley
0 siblings, 1 reply; 2+ messages in thread
From: Felix Gu @ 2026-09-14 17:14 UTC (permalink / raw)
To: Conor Dooley, Daire McNamara, Bin Liu, Greg Kroah-Hartman
Cc: linux-riscv, linux-usb, linux-kernel, Felix Gu
Restructure the probe error labels so each failure only tears down
what was already acquired, and stop calling
usb_phy_generic_unregister() with NULL or an ERR_PTR() on paths
where the phy was never registered.
The old error paths only worked because platform_device_del() and
platform_device_put() ignore NULL and ERR_PTR() arguments.
Signed-off-by: Felix Gu <ustc.gu@gmail.com>
---
drivers/usb/musb/mpfs.c | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/drivers/usb/musb/mpfs.c b/drivers/usb/musb/mpfs.c
index 587127abd30a..59625ed95656 100644
--- a/drivers/usb/musb/mpfs.c
+++ b/drivers/usb/musb/mpfs.c
@@ -276,13 +276,13 @@ static int mpfs_probe(struct platform_device *pdev)
if (IS_ERR(clk)) {
dev_err(&pdev->dev, "failed to get clock\n");
ret = PTR_ERR(clk);
- goto err_phy_release;
+ goto err_pdev_put;
}
ret = clk_prepare_enable(clk);
if (ret) {
dev_err(&pdev->dev, "failed to enable clock\n");
- goto err_phy_release;
+ goto err_pdev_put;
}
musb_pdev->dev.parent = dev;
@@ -324,29 +324,29 @@ static int mpfs_probe(struct platform_device *pdev)
ret = platform_device_add_resources(musb_pdev, pdev->resource, pdev->num_resources);
if (ret) {
dev_err(dev, "failed to add resources\n");
- goto err_clk_disable;
+ goto err_phy_release;
}
ret = platform_device_add_data(musb_pdev, pdata, sizeof(*pdata));
if (ret) {
dev_err(dev, "failed to add platform_data\n");
- goto err_clk_disable;
+ goto err_phy_release;
}
ret = platform_device_add(musb_pdev);
if (ret) {
dev_err(dev, "failed to register musb device\n");
- goto err_clk_disable;
+ goto err_phy_release;
}
dev_info(&pdev->dev, "Registered MPFS MUSB driver\n");
return 0;
-err_clk_disable:
- clk_disable_unprepare(clk);
-
err_phy_release:
usb_phy_generic_unregister(glue->phy);
+err_clk_disable:
+ clk_disable_unprepare(clk);
+err_pdev_put:
platform_device_put(musb_pdev);
return ret;
}
---
base-commit: 68142f986ff04b2b70b31db00f719bf690f64a9a
change-id: 20260914-mpfs-1-2e062f29128e
Best regards,
--
Felix Gu <ustc.gu@gmail.com>
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] usb: musb: mpfs: tidy up error handling in probe()
2026-09-14 17:14 [PATCH] usb: musb: mpfs: tidy up error handling in probe() Felix Gu
@ 2026-09-15 18:21 ` Conor Dooley
0 siblings, 0 replies; 2+ messages in thread
From: Conor Dooley @ 2026-09-15 18:21 UTC (permalink / raw)
To: Felix Gu
Cc: Conor Dooley, Daire McNamara, Bin Liu, Greg Kroah-Hartman,
linux-riscv, linux-usb, linux-kernel
[-- Attachment #1: Type: text/plain, Size: 2623 bytes --]
On Tue, Sep 15, 2026 at 01:14:08AM +0800, Felix Gu wrote:
> Restructure the probe error labels so each failure only tears down
> what was already acquired, and stop calling
> usb_phy_generic_unregister() with NULL or an ERR_PTR() on paths
> where the phy was never registered.
>
> The old error paths only worked because platform_device_del() and
> platform_device_put() ignore NULL and ERR_PTR() arguments.
>
> Signed-off-by: Felix Gu <ustc.gu@gmail.com>
> ---
> drivers/usb/musb/mpfs.c | 16 ++++++++--------
> 1 file changed, 8 insertions(+), 8 deletions(-)
>
> diff --git a/drivers/usb/musb/mpfs.c b/drivers/usb/musb/mpfs.c
> index 587127abd30a..59625ed95656 100644
> --- a/drivers/usb/musb/mpfs.c
> +++ b/drivers/usb/musb/mpfs.c
> @@ -276,13 +276,13 @@ static int mpfs_probe(struct platform_device *pdev)
> if (IS_ERR(clk)) {
> dev_err(&pdev->dev, "failed to get clock\n");
Could go a step further if you want, and use devm_clk_get_enabled().
This is clearly the wrong order, so this patch is fine as-is.
Reviewed-by: Conor Dooley <conor.dooley@microchip.com>
Thanks,
Conor.
> ret = PTR_ERR(clk);
> - goto err_phy_release;
> + goto err_pdev_put;
> }
>
> ret = clk_prepare_enable(clk);
> if (ret) {
> dev_err(&pdev->dev, "failed to enable clock\n");
> - goto err_phy_release;
> + goto err_pdev_put;
> }
>
> musb_pdev->dev.parent = dev;
> @@ -324,29 +324,29 @@ static int mpfs_probe(struct platform_device *pdev)
> ret = platform_device_add_resources(musb_pdev, pdev->resource, pdev->num_resources);
> if (ret) {
> dev_err(dev, "failed to add resources\n");
> - goto err_clk_disable;
> + goto err_phy_release;
> }
>
> ret = platform_device_add_data(musb_pdev, pdata, sizeof(*pdata));
> if (ret) {
> dev_err(dev, "failed to add platform_data\n");
> - goto err_clk_disable;
> + goto err_phy_release;
> }
>
> ret = platform_device_add(musb_pdev);
> if (ret) {
> dev_err(dev, "failed to register musb device\n");
> - goto err_clk_disable;
> + goto err_phy_release;
> }
>
> dev_info(&pdev->dev, "Registered MPFS MUSB driver\n");
> return 0;
>
> -err_clk_disable:
> - clk_disable_unprepare(clk);
> -
> err_phy_release:
> usb_phy_generic_unregister(glue->phy);
> +err_clk_disable:
> + clk_disable_unprepare(clk);
> +err_pdev_put:
> platform_device_put(musb_pdev);
> return ret;
> }
>
> ---
> base-commit: 68142f986ff04b2b70b31db00f719bf690f64a9a
> change-id: 20260914-mpfs-1-2e062f29128e
>
> Best regards,
> --
> Felix Gu <ustc.gu@gmail.com>
>
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2026-09-15 18:21 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-09-14 17:14 [PATCH] usb: musb: mpfs: tidy up error handling in probe() Felix Gu
2026-09-15 18:21 ` Conor Dooley
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®