diff options
Diffstat (limited to 'drivers/usb/chipidea/ci13xxx_msm.c')
-rw-r--r-- | drivers/usb/chipidea/ci13xxx_msm.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/usb/chipidea/ci13xxx_msm.c b/drivers/usb/chipidea/ci13xxx_msm.c index b01feb3be92e..7d16681fd3d2 100644 --- a/drivers/usb/chipidea/ci13xxx_msm.c +++ b/drivers/usb/chipidea/ci13xxx_msm.c | |||
@@ -55,7 +55,7 @@ static struct ci13xxx_platform_data ci13xxx_msm_platdata = { | |||
55 | .notify_event = ci13xxx_msm_notify_event, | 55 | .notify_event = ci13xxx_msm_notify_event, |
56 | }; | 56 | }; |
57 | 57 | ||
58 | static int __devinit ci13xxx_msm_probe(struct platform_device *pdev) | 58 | static int ci13xxx_msm_probe(struct platform_device *pdev) |
59 | { | 59 | { |
60 | struct platform_device *plat_ci; | 60 | struct platform_device *plat_ci; |
61 | 61 | ||
@@ -77,7 +77,7 @@ static int __devinit ci13xxx_msm_probe(struct platform_device *pdev) | |||
77 | return 0; | 77 | return 0; |
78 | } | 78 | } |
79 | 79 | ||
80 | static int __devexit ci13xxx_msm_remove(struct platform_device *pdev) | 80 | static int ci13xxx_msm_remove(struct platform_device *pdev) |
81 | { | 81 | { |
82 | struct platform_device *plat_ci = platform_get_drvdata(pdev); | 82 | struct platform_device *plat_ci = platform_get_drvdata(pdev); |
83 | 83 | ||
@@ -89,7 +89,7 @@ static int __devexit ci13xxx_msm_remove(struct platform_device *pdev) | |||
89 | 89 | ||
90 | static struct platform_driver ci13xxx_msm_driver = { | 90 | static struct platform_driver ci13xxx_msm_driver = { |
91 | .probe = ci13xxx_msm_probe, | 91 | .probe = ci13xxx_msm_probe, |
92 | .remove = __devexit_p(ci13xxx_msm_remove), | 92 | .remove = ci13xxx_msm_remove, |
93 | .driver = { .name = "msm_hsusb", }, | 93 | .driver = { .name = "msm_hsusb", }, |
94 | }; | 94 | }; |
95 | 95 | ||