Browse Source

usb: dwc3: pci: Properly cleanup resource

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>
Thinh Nguyen 7 năm trước cách đây
mục cha
commit
cabdf83dad
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      drivers/usb/dwc3/dwc3-pci.c

+ 1 - 1
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));
 	ret = platform_device_add_resources(dwc->dwc3, res, ARRAY_SIZE(res));
 	if (ret) {
 	if (ret) {
 		dev_err(dev, "couldn't add resources to dwc3 device\n");
 		dev_err(dev, "couldn't add resources to dwc3 device\n");
-		return ret;
+		goto err;
 	}
 	}
 
 
 	dwc->pci = pci;
 	dwc->pci = pci;