aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/host/ohci-omap3.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/usb/host/ohci-omap3.c')
-rw-r--r--drivers/usb/host/ohci-omap3.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/usb/host/ohci-omap3.c b/drivers/usb/host/ohci-omap3.c
index 1b8133b6e451..4382af3a45f9 100644
--- a/drivers/usb/host/ohci-omap3.c
+++ b/drivers/usb/host/ohci-omap3.c
@@ -125,7 +125,7 @@ static const struct hc_driver ohci_omap3_hc_driver = {
125 * then invokes the start() method for the HCD associated with it 125 * then invokes the start() method for the HCD associated with it
126 * through the hotplug entry's driver_data. 126 * through the hotplug entry's driver_data.
127 */ 127 */
128static int __devinit ohci_hcd_omap3_probe(struct platform_device *pdev) 128static int ohci_hcd_omap3_probe(struct platform_device *pdev)
129{ 129{
130 struct device *dev = &pdev->dev; 130 struct device *dev = &pdev->dev;
131 struct usb_hcd *hcd = NULL; 131 struct usb_hcd *hcd = NULL;
@@ -209,7 +209,7 @@ err_io:
209 * the HCD's stop() method. It is always called from a thread 209 * the HCD's stop() method. It is always called from a thread
210 * context, normally "rmmod", "apmd", or something similar. 210 * context, normally "rmmod", "apmd", or something similar.
211 */ 211 */
212static int __devexit ohci_hcd_omap3_remove(struct platform_device *pdev) 212static int ohci_hcd_omap3_remove(struct platform_device *pdev)
213{ 213{
214 struct device *dev = &pdev->dev; 214 struct device *dev = &pdev->dev;
215 struct usb_hcd *hcd = dev_get_drvdata(dev); 215 struct usb_hcd *hcd = dev_get_drvdata(dev);
@@ -232,7 +232,7 @@ static void ohci_hcd_omap3_shutdown(struct platform_device *pdev)
232 232
233static struct platform_driver ohci_hcd_omap3_driver = { 233static struct platform_driver ohci_hcd_omap3_driver = {
234 .probe = ohci_hcd_omap3_probe, 234 .probe = ohci_hcd_omap3_probe,
235 .remove = __devexit_p(ohci_hcd_omap3_remove), 235 .remove = ohci_hcd_omap3_remove,
236 .shutdown = ohci_hcd_omap3_shutdown, 236 .shutdown = ohci_hcd_omap3_shutdown,
237 .driver = { 237 .driver = {
238 .name = "ohci-omap3", 238 .name = "ohci-omap3",