diff options
Diffstat (limited to 'drivers/usb/host/ehci-tilegx.c')
-rw-r--r-- | drivers/usb/host/ehci-tilegx.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/drivers/usb/host/ehci-tilegx.c b/drivers/usb/host/ehci-tilegx.c index 1d215cdb9dea..b083a350eea3 100644 --- a/drivers/usb/host/ehci-tilegx.c +++ b/drivers/usb/host/ehci-tilegx.c | |||
@@ -118,8 +118,10 @@ static int ehci_hcd_tilegx_drv_probe(struct platform_device *pdev) | |||
118 | 118 | ||
119 | hcd = usb_create_hcd(&ehci_tilegx_hc_driver, &pdev->dev, | 119 | hcd = usb_create_hcd(&ehci_tilegx_hc_driver, &pdev->dev, |
120 | dev_name(&pdev->dev)); | 120 | dev_name(&pdev->dev)); |
121 | if (!hcd) | 121 | if (!hcd) { |
122 | return -ENOMEM; | 122 | ret = -ENOMEM; |
123 | goto err_hcd; | ||
124 | } | ||
123 | 125 | ||
124 | /* | 126 | /* |
125 | * We don't use rsrc_start to map in our registers, but seems like | 127 | * We don't use rsrc_start to map in our registers, but seems like |
@@ -176,6 +178,7 @@ err_have_irq: | |||
176 | err_no_irq: | 178 | err_no_irq: |
177 | tilegx_stop_ehc(); | 179 | tilegx_stop_ehc(); |
178 | usb_put_hcd(hcd); | 180 | usb_put_hcd(hcd); |
181 | err_hcd: | ||
179 | gxio_usb_host_destroy(&pdata->usb_ctx); | 182 | gxio_usb_host_destroy(&pdata->usb_ctx); |
180 | return ret; | 183 | return ret; |
181 | } | 184 | } |