projects
/
platform
/
kernel
/
linux-starfive.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
21cbbc6
)
usb: dwc3: Fix error return code in dwc3_qcom_probe()
author
Wei Yongjun
<weiyongjun1@huawei.com>
Wed, 6 Jun 2018 14:22:24 +0000
(14:22 +0000)
committer
Felipe 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
patch
|
blob
|
history
diff --git
a/drivers/usb/dwc3/dwc3-qcom.c
b/drivers/usb/dwc3/dwc3-qcom.c
index
b0e67ab
..
8854e42
100644
(file)
--- a/
drivers/usb/dwc3/dwc3-qcom.c
+++ b/
drivers/usb/dwc3/dwc3-qcom.c
@@
-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;
}