usb: dwc3: Fix error return code in dwc3_qcom_probe()
authorWei Yongjun <weiyongjun1@huawei.com>
Wed, 6 Jun 2018 14:22:24 +0000 (14:22 +0000)
committerFelipe Balbi <felipe.balbi@linux.intel.com>
Tue, 19 Jun 2018 09:48:12 +0000 (12:48 +0300)
Fix to return error code -ENODEV from the get device failed error
handling case instead of 0, as done elsewhere in this function.

Fixes: a4333c3a6ba9 ("usb: dwc3: Add Qualcomm DWC3 glue driver")
Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
Signed-off-by: Felipe Balbi <felipe.balbi@linux.intel.com>
drivers/usb/dwc3/dwc3-qcom.c

index b0e67ab2f98cd09ba54eaabfdab1680e30783e63..8854e428ae0848c0a2cc2142eeff7041b2c3ffb3 100644 (file)
@@ -490,6 +490,7 @@ static int dwc3_qcom_probe(struct platform_device *pdev)
        qcom->dwc3 = of_find_device_by_node(dwc3_np);
        if (!qcom->dwc3) {
                dev_err(&pdev->dev, "failed to get dwc3 platform device\n");
+               ret = -ENODEV;
                goto depopulate;
        }