diff options
Diffstat (limited to 'drivers/hwmon/mc13783-adc.c')
-rw-r--r-- | drivers/hwmon/mc13783-adc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/hwmon/mc13783-adc.c b/drivers/hwmon/mc13783-adc.c index cf47a59657a9..2a7f331cd3c0 100644 --- a/drivers/hwmon/mc13783-adc.c +++ b/drivers/hwmon/mc13783-adc.c | |||
@@ -233,7 +233,7 @@ out_err_create_16chans: | |||
233 | return ret; | 233 | return ret; |
234 | } | 234 | } |
235 | 235 | ||
236 | static int __devexit mc13783_adc_remove(struct platform_device *pdev) | 236 | static int mc13783_adc_remove(struct platform_device *pdev) |
237 | { | 237 | { |
238 | struct mc13783_adc_priv *priv = platform_get_drvdata(pdev); | 238 | struct mc13783_adc_priv *priv = platform_get_drvdata(pdev); |
239 | kernel_ulong_t driver_data = platform_get_device_id(pdev)->driver_data; | 239 | kernel_ulong_t driver_data = platform_get_device_id(pdev)->driver_data; |
@@ -265,7 +265,7 @@ static const struct platform_device_id mc13783_adc_idtable[] = { | |||
265 | MODULE_DEVICE_TABLE(platform, mc13783_adc_idtable); | 265 | MODULE_DEVICE_TABLE(platform, mc13783_adc_idtable); |
266 | 266 | ||
267 | static struct platform_driver mc13783_adc_driver = { | 267 | static struct platform_driver mc13783_adc_driver = { |
268 | .remove = __devexit_p(mc13783_adc_remove), | 268 | .remove = mc13783_adc_remove, |
269 | .driver = { | 269 | .driver = { |
270 | .owner = THIS_MODULE, | 270 | .owner = THIS_MODULE, |
271 | .name = DRIVER_NAME, | 271 | .name = DRIVER_NAME, |