From: Wei Yongjun <weiyongj...@huawei.com>

Fix to return a negative error code from the usb_phy_generic_register()
error handling case instead of 0, as done elsewhere in this function.

Signed-off-by: Wei Yongjun <weiyongj...@huawei.com>
Signed-off-by: Bin Liu <b-...@ti.com>
---
 drivers/usb/musb/am35x.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/drivers/usb/musb/am35x.c b/drivers/usb/musb/am35x.c
index c14577d..50ca805 100644
--- a/drivers/usb/musb/am35x.c
+++ b/drivers/usb/musb/am35x.c
@@ -510,8 +510,10 @@ static int am35x_probe(struct platform_device *pdev)
        pdata->platform_ops             = &am35x_ops;
 
        glue->phy = usb_phy_generic_register();
-       if (IS_ERR(glue->phy))
+       if (IS_ERR(glue->phy)) {
+               ret = PTR_ERR(glue->phy);
                goto err7;
+       }
        platform_set_drvdata(pdev, glue);
 
        pinfo = am35x_dev_info;
-- 
1.9.1

--
To unsubscribe from this list: send the line "unsubscribe linux-usb" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to