diff options
Diffstat (limited to 'drivers/usb/otg/fsl_otg.c')
-rw-r--r-- | drivers/usb/otg/fsl_otg.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/usb/otg/fsl_otg.c b/drivers/usb/otg/fsl_otg.c index c19d1d7173a9..d16adb41eb21 100644 --- a/drivers/usb/otg/fsl_otg.c +++ b/drivers/usb/otg/fsl_otg.c | |||
@@ -1110,7 +1110,7 @@ static const struct file_operations otg_fops = { | |||
1110 | .release = fsl_otg_release, | 1110 | .release = fsl_otg_release, |
1111 | }; | 1111 | }; |
1112 | 1112 | ||
1113 | static int __devinit fsl_otg_probe(struct platform_device *pdev) | 1113 | static int fsl_otg_probe(struct platform_device *pdev) |
1114 | { | 1114 | { |
1115 | int ret; | 1115 | int ret; |
1116 | 1116 | ||
@@ -1144,7 +1144,7 @@ static int __devinit fsl_otg_probe(struct platform_device *pdev) | |||
1144 | return ret; | 1144 | return ret; |
1145 | } | 1145 | } |
1146 | 1146 | ||
1147 | static int __devexit fsl_otg_remove(struct platform_device *pdev) | 1147 | static int fsl_otg_remove(struct platform_device *pdev) |
1148 | { | 1148 | { |
1149 | struct fsl_usb2_platform_data *pdata = pdev->dev.platform_data; | 1149 | struct fsl_usb2_platform_data *pdata = pdev->dev.platform_data; |
1150 | 1150 | ||
@@ -1169,7 +1169,7 @@ static int __devexit fsl_otg_remove(struct platform_device *pdev) | |||
1169 | 1169 | ||
1170 | struct platform_driver fsl_otg_driver = { | 1170 | struct platform_driver fsl_otg_driver = { |
1171 | .probe = fsl_otg_probe, | 1171 | .probe = fsl_otg_probe, |
1172 | .remove = __devexit_p(fsl_otg_remove), | 1172 | .remove = fsl_otg_remove, |
1173 | .driver = { | 1173 | .driver = { |
1174 | .name = driver_name, | 1174 | .name = driver_name, |
1175 | .owner = THIS_MODULE, | 1175 | .owner = THIS_MODULE, |