aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/host/sl811-hcd.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/usb/host/sl811-hcd.c')
-rw-r--r--drivers/usb/host/sl811-hcd.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/usb/host/sl811-hcd.c b/drivers/usb/host/sl811-hcd.c
index 619b05f42d4f..d62f0404baaa 100644
--- a/drivers/usb/host/sl811-hcd.c
+++ b/drivers/usb/host/sl811-hcd.c
@@ -1595,7 +1595,7 @@ static struct hc_driver sl811h_hc_driver = {
1595 1595
1596/*-------------------------------------------------------------------------*/ 1596/*-------------------------------------------------------------------------*/
1597 1597
1598static int __devexit 1598static int
1599sl811h_remove(struct platform_device *dev) 1599sl811h_remove(struct platform_device *dev)
1600{ 1600{
1601 struct usb_hcd *hcd = platform_get_drvdata(dev); 1601 struct usb_hcd *hcd = platform_get_drvdata(dev);
@@ -1618,7 +1618,7 @@ sl811h_remove(struct platform_device *dev)
1618 return 0; 1618 return 0;
1619} 1619}
1620 1620
1621static int __devinit 1621static int
1622sl811h_probe(struct platform_device *dev) 1622sl811h_probe(struct platform_device *dev)
1623{ 1623{
1624 struct usb_hcd *hcd; 1624 struct usb_hcd *hcd;
@@ -1808,7 +1808,7 @@ sl811h_resume(struct platform_device *dev)
1808/* this driver is exported so sl811_cs can depend on it */ 1808/* this driver is exported so sl811_cs can depend on it */
1809struct platform_driver sl811h_driver = { 1809struct platform_driver sl811h_driver = {
1810 .probe = sl811h_probe, 1810 .probe = sl811h_probe,
1811 .remove = __devexit_p(sl811h_remove), 1811 .remove = sl811h_remove,
1812 1812
1813 .suspend = sl811h_suspend, 1813 .suspend = sl811h_suspend,
1814 .resume = sl811h_resume, 1814 .resume = sl811h_resume,