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:
de948a7
)
usb: dwc3: pci: Properly cleanup resource
author
Thinh Nguyen
<Thinh.Nguyen@synopsys.com>
Mon, 19 Mar 2018 20:07:35 +0000
(13:07 -0700)
committer
Felipe Balbi
<felipe.balbi@linux.intel.com>
Thu, 22 Mar 2018 08:48:18 +0000
(10:48 +0200)
Platform device is allocated before adding resources. Make sure to
properly cleanup on error case.
Cc: <stable@vger.kernel.org>
Fixes:
f1c7e7108109
("usb: dwc3: convert to pcim_enable_device()")
Signed-off-by: Thinh Nguyen <thinhn@synopsys.com>
Signed-off-by: Felipe Balbi <felipe.balbi@linux.intel.com>
drivers/usb/dwc3/dwc3-pci.c
patch
|
blob
|
history
diff --git
a/drivers/usb/dwc3/dwc3-pci.c
b/drivers/usb/dwc3/dwc3-pci.c
index
3ba1113
..
c961a94
100644
(file)
--- a/
drivers/usb/dwc3/dwc3-pci.c
+++ b/
drivers/usb/dwc3/dwc3-pci.c
@@
-222,7
+222,7
@@
static int dwc3_pci_probe(struct pci_dev *pci,
ret = platform_device_add_resources(dwc->dwc3, res, ARRAY_SIZE(res));
if (ret) {
dev_err(dev, "couldn't add resources to dwc3 device\n");
-
return ret
;
+
goto err
;
}
dwc->pci = pci;