aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/phy/omap-usb2.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/usb/phy/omap-usb2.c')
-rw-r--r--drivers/usb/phy/omap-usb2.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/usb/phy/omap-usb2.c b/drivers/usb/phy/omap-usb2.c
index 15ab3d6f2e8c..26ae8f49225c 100644
--- a/drivers/usb/phy/omap-usb2.c
+++ b/drivers/usb/phy/omap-usb2.c
@@ -141,7 +141,7 @@ static int omap_usb2_suspend(struct usb_phy *x, int suspend)
141 return 0; 141 return 0;
142} 142}
143 143
144static int __devinit omap_usb2_probe(struct platform_device *pdev) 144static int omap_usb2_probe(struct platform_device *pdev)
145{ 145{
146 struct omap_usb *phy; 146 struct omap_usb *phy;
147 struct usb_otg *otg; 147 struct usb_otg *otg;
@@ -199,7 +199,7 @@ static int __devinit omap_usb2_probe(struct platform_device *pdev)
199 return 0; 199 return 0;
200} 200}
201 201
202static int __devexit omap_usb2_remove(struct platform_device *pdev) 202static int omap_usb2_remove(struct platform_device *pdev)
203{ 203{
204 struct omap_usb *phy = platform_get_drvdata(pdev); 204 struct omap_usb *phy = platform_get_drvdata(pdev);
205 205
@@ -254,7 +254,7 @@ MODULE_DEVICE_TABLE(of, omap_usb2_id_table);
254 254
255static struct platform_driver omap_usb2_driver = { 255static struct platform_driver omap_usb2_driver = {
256 .probe = omap_usb2_probe, 256 .probe = omap_usb2_probe,
257 .remove = __devexit_p(omap_usb2_remove), 257 .remove = omap_usb2_remove,
258 .driver = { 258 .driver = {
259 .name = "omap-usb2", 259 .name = "omap-usb2",
260 .owner = THIS_MODULE, 260 .owner = THIS_MODULE,