diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2015-01-21 01:55:45 +0300 |
---|---|---|
committer | Felipe Balbi <balbi@ti.com> | 2015-01-27 18:38:24 +0300 |
commit | 10c73f09dc9be7c7373483f9965dd535c5788f09 (patch) | |
tree | cb282fc89f4c83b11ab658f26e6992eb4d354778 /drivers/usb/host/isp1760-if.c | |
parent | c3cc40ccea2cd3533a90d915b40f304843642df9 (diff) | |
download | linux-10c73f09dc9be7c7373483f9965dd535c5788f09.tar.xz |
usb: isp1760: Move removal cleanup code to isp1760-hcd.c
The removal cleanup code is duplicated between the different bus glues.
Move it to a central location.
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'drivers/usb/host/isp1760-if.c')
-rw-r--r-- | drivers/usb/host/isp1760-if.c | 16 |
1 files changed, 2 insertions, 14 deletions
diff --git a/drivers/usb/host/isp1760-if.c b/drivers/usb/host/isp1760-if.c index 3db98daa16d5..b96c62f40863 100644 --- a/drivers/usb/host/isp1760-if.c +++ b/drivers/usb/host/isp1760-if.c @@ -160,14 +160,7 @@ cleanup1: static void isp1761_pci_remove(struct pci_dev *dev) { - struct usb_hcd *hcd; - - hcd = pci_get_drvdata(dev); - - usb_remove_hcd(hcd); - iounmap(hcd->regs); - release_mem_region(hcd->rsrc_start, hcd->rsrc_len); - usb_put_hcd(hcd); + isp1760_unregister(&dev->dev); pci_disable_device(dev); } @@ -291,12 +284,7 @@ cleanup: static int isp1760_plat_remove(struct platform_device *pdev) { - struct usb_hcd *hcd = platform_get_drvdata(pdev); - - usb_remove_hcd(hcd); - iounmap(hcd->regs); - release_mem_region(hcd->rsrc_start, hcd->rsrc_len); - usb_put_hcd(hcd); + isp1760_unregister(&pdev->dev); return 0; } |