usb: musb: mpfs: Fix error codes in probe()
authorDan Carpenter <dan.carpenter@oracle.com>
Fri, 24 Jun 2022 07:22:20 +0000 (10:22 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 24 Jun 2022 11:36:47 +0000 (13:36 +0200)
These error paths return success but they need to return a negative
error code.

Fixes: 7a96b6ea90a4 ("usb: musb: Add support for PolarFire SoC's musb controller")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Link: https://lore.kernel.org/r/YrVmLEc/FOEzNdzj@kili
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/musb/mpfs.c

index 99666ef..a69ca33 100644 (file)
@@ -181,8 +181,10 @@ static int mpfs_probe(struct platform_device *pdev)
        glue->clk = clk;
 
        pdata = devm_kzalloc(dev, sizeof(*pdata), GFP_KERNEL);
-       if (!pdata)
+       if (!pdata) {
+               ret = -ENOMEM;
                goto err_clk_disable;
+       }
 
        pdata->config = &mpfs_musb_hdrc_config;
        pdata->platform_ops = &mpfs_ops;
@@ -197,6 +199,7 @@ static int mpfs_probe(struct platform_device *pdev)
        if (IS_ERR(glue->phy)) {
                dev_err(dev, "failed to register usb-phy %ld\n",
                        PTR_ERR(glue->phy));
+               ret = PTR_ERR(glue->phy);
                goto err_clk_disable;
        }