diff options
Diffstat (limited to 'drivers/hwmon')
43 files changed, 43 insertions, 43 deletions
diff --git a/drivers/hwmon/abituguru.c b/drivers/hwmon/abituguru.c index 78b81793ddd9..d12c3fb25fad 100644 --- a/drivers/hwmon/abituguru.c +++ b/drivers/hwmon/abituguru.c | |||
@@ -1545,7 +1545,7 @@ static struct platform_driver abituguru_driver = { | |||
1545 | .pm = ABIT_UGURU_PM, | 1545 | .pm = ABIT_UGURU_PM, |
1546 | }, | 1546 | }, |
1547 | .probe = abituguru_probe, | 1547 | .probe = abituguru_probe, |
1548 | .remove = __devexit_p(abituguru_remove), | 1548 | .remove = abituguru_remove, |
1549 | }; | 1549 | }; |
1550 | 1550 | ||
1551 | static int __init abituguru_detect(void) | 1551 | static int __init abituguru_detect(void) |
diff --git a/drivers/hwmon/abituguru3.c b/drivers/hwmon/abituguru3.c index b174b8b2b4df..56a807554889 100644 --- a/drivers/hwmon/abituguru3.c +++ b/drivers/hwmon/abituguru3.c | |||
@@ -1171,7 +1171,7 @@ static struct platform_driver abituguru3_driver = { | |||
1171 | .pm = ABIT_UGURU3_PM | 1171 | .pm = ABIT_UGURU3_PM |
1172 | }, | 1172 | }, |
1173 | .probe = abituguru3_probe, | 1173 | .probe = abituguru3_probe, |
1174 | .remove = __devexit_p(abituguru3_remove), | 1174 | .remove = abituguru3_remove, |
1175 | }; | 1175 | }; |
1176 | 1176 | ||
1177 | static int __init abituguru3_dmi_detect(void) | 1177 | static int __init abituguru3_dmi_detect(void) |
diff --git a/drivers/hwmon/ad7314.c b/drivers/hwmon/ad7314.c index 37c01e72d699..fdda321c6066 100644 --- a/drivers/hwmon/ad7314.c +++ b/drivers/hwmon/ad7314.c | |||
@@ -159,7 +159,7 @@ static struct spi_driver ad7314_driver = { | |||
159 | .owner = THIS_MODULE, | 159 | .owner = THIS_MODULE, |
160 | }, | 160 | }, |
161 | .probe = ad7314_probe, | 161 | .probe = ad7314_probe, |
162 | .remove = __devexit_p(ad7314_remove), | 162 | .remove = ad7314_remove, |
163 | .id_table = ad7314_id, | 163 | .id_table = ad7314_id, |
164 | }; | 164 | }; |
165 | 165 | ||
diff --git a/drivers/hwmon/ad7414.c b/drivers/hwmon/ad7414.c index b420fb3f3a71..20276ca37ed8 100644 --- a/drivers/hwmon/ad7414.c +++ b/drivers/hwmon/ad7414.c | |||
@@ -246,7 +246,7 @@ static struct i2c_driver ad7414_driver = { | |||
246 | .name = "ad7414", | 246 | .name = "ad7414", |
247 | }, | 247 | }, |
248 | .probe = ad7414_probe, | 248 | .probe = ad7414_probe, |
249 | .remove = __devexit_p(ad7414_remove), | 249 | .remove = ad7414_remove, |
250 | .id_table = ad7414_id, | 250 | .id_table = ad7414_id, |
251 | }; | 251 | }; |
252 | 252 | ||
diff --git a/drivers/hwmon/adcxx.c b/drivers/hwmon/adcxx.c index f4c5867170d6..dff6f4f0dd71 100644 --- a/drivers/hwmon/adcxx.c +++ b/drivers/hwmon/adcxx.c | |||
@@ -240,7 +240,7 @@ static struct spi_driver adcxx_driver = { | |||
240 | }, | 240 | }, |
241 | .id_table = adcxx_ids, | 241 | .id_table = adcxx_ids, |
242 | .probe = adcxx_probe, | 242 | .probe = adcxx_probe, |
243 | .remove = __devexit_p(adcxx_remove), | 243 | .remove = adcxx_remove, |
244 | }; | 244 | }; |
245 | 245 | ||
246 | module_spi_driver(adcxx_driver); | 246 | module_spi_driver(adcxx_driver); |
diff --git a/drivers/hwmon/ads7871.c b/drivers/hwmon/ads7871.c index 1b53aa42b6db..5a6cc1f91ba7 100644 --- a/drivers/hwmon/ads7871.c +++ b/drivers/hwmon/ads7871.c | |||
@@ -241,7 +241,7 @@ static struct spi_driver ads7871_driver = { | |||
241 | }, | 241 | }, |
242 | 242 | ||
243 | .probe = ads7871_probe, | 243 | .probe = ads7871_probe, |
244 | .remove = __devexit_p(ads7871_remove), | 244 | .remove = ads7871_remove, |
245 | }; | 245 | }; |
246 | 246 | ||
247 | module_spi_driver(ads7871_driver); | 247 | module_spi_driver(ads7871_driver); |
diff --git a/drivers/hwmon/adt7411.c b/drivers/hwmon/adt7411.c index 517f1856c706..a961af614770 100644 --- a/drivers/hwmon/adt7411.c +++ b/drivers/hwmon/adt7411.c | |||
@@ -337,7 +337,7 @@ static struct i2c_driver adt7411_driver = { | |||
337 | .name = "adt7411", | 337 | .name = "adt7411", |
338 | }, | 338 | }, |
339 | .probe = adt7411_probe, | 339 | .probe = adt7411_probe, |
340 | .remove = __devexit_p(adt7411_remove), | 340 | .remove = adt7411_remove, |
341 | .id_table = adt7411_id, | 341 | .id_table = adt7411_id, |
342 | .detect = adt7411_detect, | 342 | .detect = adt7411_detect, |
343 | .address_list = normal_i2c, | 343 | .address_list = normal_i2c, |
diff --git a/drivers/hwmon/coretemp.c b/drivers/hwmon/coretemp.c index 47b8d84b489d..5c0cdd385b1c 100644 --- a/drivers/hwmon/coretemp.c +++ b/drivers/hwmon/coretemp.c | |||
@@ -608,7 +608,7 @@ static struct platform_driver coretemp_driver = { | |||
608 | .name = DRVNAME, | 608 | .name = DRVNAME, |
609 | }, | 609 | }, |
610 | .probe = coretemp_probe, | 610 | .probe = coretemp_probe, |
611 | .remove = __devexit_p(coretemp_remove), | 611 | .remove = coretemp_remove, |
612 | }; | 612 | }; |
613 | 613 | ||
614 | static int __cpuinit coretemp_device_add(unsigned int cpu) | 614 | static int __cpuinit coretemp_device_add(unsigned int cpu) |
diff --git a/drivers/hwmon/da9052-hwmon.c b/drivers/hwmon/da9052-hwmon.c index b8d01c5f5713..ff28a2daa730 100644 --- a/drivers/hwmon/da9052-hwmon.c +++ b/drivers/hwmon/da9052-hwmon.c | |||
@@ -328,7 +328,7 @@ static int __devexit da9052_hwmon_remove(struct platform_device *pdev) | |||
328 | 328 | ||
329 | static struct platform_driver da9052_hwmon_driver = { | 329 | static struct platform_driver da9052_hwmon_driver = { |
330 | .probe = da9052_hwmon_probe, | 330 | .probe = da9052_hwmon_probe, |
331 | .remove = __devexit_p(da9052_hwmon_remove), | 331 | .remove = da9052_hwmon_remove, |
332 | .driver = { | 332 | .driver = { |
333 | .name = "da9052-hwmon", | 333 | .name = "da9052-hwmon", |
334 | .owner = THIS_MODULE, | 334 | .owner = THIS_MODULE, |
diff --git a/drivers/hwmon/dme1737.c b/drivers/hwmon/dme1737.c index fe0eeec0b750..32f81ca3c197 100644 --- a/drivers/hwmon/dme1737.c +++ b/drivers/hwmon/dme1737.c | |||
@@ -2734,7 +2734,7 @@ static struct platform_driver dme1737_isa_driver = { | |||
2734 | .name = "dme1737", | 2734 | .name = "dme1737", |
2735 | }, | 2735 | }, |
2736 | .probe = dme1737_isa_probe, | 2736 | .probe = dme1737_isa_probe, |
2737 | .remove = __devexit_p(dme1737_isa_remove), | 2737 | .remove = dme1737_isa_remove, |
2738 | }; | 2738 | }; |
2739 | 2739 | ||
2740 | /* --------------------------------------------------------------------- | 2740 | /* --------------------------------------------------------------------- |
diff --git a/drivers/hwmon/f71805f.c b/drivers/hwmon/f71805f.c index 4dd7723d257f..56860dd23879 100644 --- a/drivers/hwmon/f71805f.c +++ b/drivers/hwmon/f71805f.c | |||
@@ -1510,7 +1510,7 @@ static struct platform_driver f71805f_driver = { | |||
1510 | .name = DRVNAME, | 1510 | .name = DRVNAME, |
1511 | }, | 1511 | }, |
1512 | .probe = f71805f_probe, | 1512 | .probe = f71805f_probe, |
1513 | .remove = __devexit_p(f71805f_remove), | 1513 | .remove = f71805f_remove, |
1514 | }; | 1514 | }; |
1515 | 1515 | ||
1516 | static int __init f71805f_device_add(unsigned short address, | 1516 | static int __init f71805f_device_add(unsigned short address, |
diff --git a/drivers/hwmon/fam15h_power.c b/drivers/hwmon/fam15h_power.c index 4f4110407387..327fbc6106ef 100644 --- a/drivers/hwmon/fam15h_power.c +++ b/drivers/hwmon/fam15h_power.c | |||
@@ -256,7 +256,7 @@ static struct pci_driver fam15h_power_driver = { | |||
256 | .name = "fam15h_power", | 256 | .name = "fam15h_power", |
257 | .id_table = fam15h_power_id_table, | 257 | .id_table = fam15h_power_id_table, |
258 | .probe = fam15h_power_probe, | 258 | .probe = fam15h_power_probe, |
259 | .remove = __devexit_p(fam15h_power_remove), | 259 | .remove = fam15h_power_remove, |
260 | .resume = fam15h_power_resume, | 260 | .resume = fam15h_power_resume, |
261 | }; | 261 | }; |
262 | 262 | ||
diff --git a/drivers/hwmon/gpio-fan.c b/drivers/hwmon/gpio-fan.c index 1381a2e3bbd4..4b1767f95b03 100644 --- a/drivers/hwmon/gpio-fan.c +++ b/drivers/hwmon/gpio-fan.c | |||
@@ -626,7 +626,7 @@ static SIMPLE_DEV_PM_OPS(gpio_fan_pm, gpio_fan_suspend, gpio_fan_resume); | |||
626 | 626 | ||
627 | static struct platform_driver gpio_fan_driver = { | 627 | static struct platform_driver gpio_fan_driver = { |
628 | .probe = gpio_fan_probe, | 628 | .probe = gpio_fan_probe, |
629 | .remove = __devexit_p(gpio_fan_remove), | 629 | .remove = gpio_fan_remove, |
630 | .driver = { | 630 | .driver = { |
631 | .name = "gpio-fan", | 631 | .name = "gpio-fan", |
632 | .pm = GPIO_FAN_PM, | 632 | .pm = GPIO_FAN_PM, |
diff --git a/drivers/hwmon/hih6130.c b/drivers/hwmon/hih6130.c index 9a675efaa78d..9ebe24e9220c 100644 --- a/drivers/hwmon/hih6130.c +++ b/drivers/hwmon/hih6130.c | |||
@@ -283,7 +283,7 @@ MODULE_DEVICE_TABLE(i2c, hih6130_id); | |||
283 | static struct i2c_driver hih6130_driver = { | 283 | static struct i2c_driver hih6130_driver = { |
284 | .driver.name = "hih6130", | 284 | .driver.name = "hih6130", |
285 | .probe = hih6130_probe, | 285 | .probe = hih6130_probe, |
286 | .remove = __devexit_p(hih6130_remove), | 286 | .remove = hih6130_remove, |
287 | .id_table = hih6130_id, | 287 | .id_table = hih6130_id, |
288 | }; | 288 | }; |
289 | 289 | ||
diff --git a/drivers/hwmon/i5k_amb.c b/drivers/hwmon/i5k_amb.c index 46141abaafba..3fa3cc8dd061 100644 --- a/drivers/hwmon/i5k_amb.c +++ b/drivers/hwmon/i5k_amb.c | |||
@@ -587,7 +587,7 @@ static struct platform_driver i5k_amb_driver = { | |||
587 | .name = DRVNAME, | 587 | .name = DRVNAME, |
588 | }, | 588 | }, |
589 | .probe = i5k_amb_probe, | 589 | .probe = i5k_amb_probe, |
590 | .remove = __devexit_p(i5k_amb_remove), | 590 | .remove = i5k_amb_remove, |
591 | }; | 591 | }; |
592 | 592 | ||
593 | static int __init i5k_amb_init(void) | 593 | static int __init i5k_amb_init(void) |
diff --git a/drivers/hwmon/it87.c b/drivers/hwmon/it87.c index f1de3979181f..2cb0da1190c7 100644 --- a/drivers/hwmon/it87.c +++ b/drivers/hwmon/it87.c | |||
@@ -443,7 +443,7 @@ static struct platform_driver it87_driver = { | |||
443 | .name = DRVNAME, | 443 | .name = DRVNAME, |
444 | }, | 444 | }, |
445 | .probe = it87_probe, | 445 | .probe = it87_probe, |
446 | .remove = __devexit_p(it87_remove), | 446 | .remove = it87_remove, |
447 | }; | 447 | }; |
448 | 448 | ||
449 | static ssize_t show_in(struct device *dev, struct device_attribute *attr, | 449 | static ssize_t show_in(struct device *dev, struct device_attribute *attr, |
diff --git a/drivers/hwmon/jz4740-hwmon.c b/drivers/hwmon/jz4740-hwmon.c index dee9eec2036e..fca0d3798ba6 100644 --- a/drivers/hwmon/jz4740-hwmon.c +++ b/drivers/hwmon/jz4740-hwmon.c | |||
@@ -184,7 +184,7 @@ static int __devexit jz4740_hwmon_remove(struct platform_device *pdev) | |||
184 | 184 | ||
185 | static struct platform_driver jz4740_hwmon_driver = { | 185 | static struct platform_driver jz4740_hwmon_driver = { |
186 | .probe = jz4740_hwmon_probe, | 186 | .probe = jz4740_hwmon_probe, |
187 | .remove = __devexit_p(jz4740_hwmon_remove), | 187 | .remove = jz4740_hwmon_remove, |
188 | .driver = { | 188 | .driver = { |
189 | .name = "jz4740-hwmon", | 189 | .name = "jz4740-hwmon", |
190 | .owner = THIS_MODULE, | 190 | .owner = THIS_MODULE, |
diff --git a/drivers/hwmon/k10temp.c b/drivers/hwmon/k10temp.c index f2fe8078633b..2722cdecc79e 100644 --- a/drivers/hwmon/k10temp.c +++ b/drivers/hwmon/k10temp.c | |||
@@ -219,7 +219,7 @@ static struct pci_driver k10temp_driver = { | |||
219 | .name = "k10temp", | 219 | .name = "k10temp", |
220 | .id_table = k10temp_id_table, | 220 | .id_table = k10temp_id_table, |
221 | .probe = k10temp_probe, | 221 | .probe = k10temp_probe, |
222 | .remove = __devexit_p(k10temp_remove), | 222 | .remove = k10temp_remove, |
223 | }; | 223 | }; |
224 | 224 | ||
225 | module_pci_driver(k10temp_driver); | 225 | module_pci_driver(k10temp_driver); |
diff --git a/drivers/hwmon/k8temp.c b/drivers/hwmon/k8temp.c index e8c7fb0bbf95..143a2f8079a3 100644 --- a/drivers/hwmon/k8temp.c +++ b/drivers/hwmon/k8temp.c | |||
@@ -324,7 +324,7 @@ static struct pci_driver k8temp_driver = { | |||
324 | .name = "k8temp", | 324 | .name = "k8temp", |
325 | .id_table = k8temp_ids, | 325 | .id_table = k8temp_ids, |
326 | .probe = k8temp_probe, | 326 | .probe = k8temp_probe, |
327 | .remove = __devexit_p(k8temp_remove), | 327 | .remove = k8temp_remove, |
328 | }; | 328 | }; |
329 | 329 | ||
330 | module_pci_driver(k8temp_driver); | 330 | module_pci_driver(k8temp_driver); |
diff --git a/drivers/hwmon/lm70.c b/drivers/hwmon/lm70.c index 2d1777a03edb..d3d5afd95a51 100644 --- a/drivers/hwmon/lm70.c +++ b/drivers/hwmon/lm70.c | |||
@@ -207,7 +207,7 @@ static struct spi_driver lm70_driver = { | |||
207 | }, | 207 | }, |
208 | .id_table = lm70_ids, | 208 | .id_table = lm70_ids, |
209 | .probe = lm70_probe, | 209 | .probe = lm70_probe, |
210 | .remove = __devexit_p(lm70_remove), | 210 | .remove = lm70_remove, |
211 | }; | 211 | }; |
212 | 212 | ||
213 | module_spi_driver(lm70_driver); | 213 | module_spi_driver(lm70_driver); |
diff --git a/drivers/hwmon/lm78.c b/drivers/hwmon/lm78.c index c6ffafe600ad..1dc3433d2acd 100644 --- a/drivers/hwmon/lm78.c +++ b/drivers/hwmon/lm78.c | |||
@@ -903,7 +903,7 @@ static struct platform_driver lm78_isa_driver = { | |||
903 | .name = "lm78", | 903 | .name = "lm78", |
904 | }, | 904 | }, |
905 | .probe = lm78_isa_probe, | 905 | .probe = lm78_isa_probe, |
906 | .remove = __devexit_p(lm78_isa_remove), | 906 | .remove = lm78_isa_remove, |
907 | }; | 907 | }; |
908 | 908 | ||
909 | /* return 1 if a supported chip is found, 0 otherwise */ | 909 | /* return 1 if a supported chip is found, 0 otherwise */ |
diff --git a/drivers/hwmon/max1111.c b/drivers/hwmon/max1111.c index b4eb0889c465..5ac15b07dc60 100644 --- a/drivers/hwmon/max1111.c +++ b/drivers/hwmon/max1111.c | |||
@@ -283,7 +283,7 @@ static struct spi_driver max1111_driver = { | |||
283 | }, | 283 | }, |
284 | .id_table = max1111_ids, | 284 | .id_table = max1111_ids, |
285 | .probe = max1111_probe, | 285 | .probe = max1111_probe, |
286 | .remove = __devexit_p(max1111_remove), | 286 | .remove = max1111_remove, |
287 | }; | 287 | }; |
288 | 288 | ||
289 | module_spi_driver(max1111_driver); | 289 | module_spi_driver(max1111_driver); |
diff --git a/drivers/hwmon/max197.c b/drivers/hwmon/max197.c index 6304f2616fa7..170e1b28128b 100644 --- a/drivers/hwmon/max197.c +++ b/drivers/hwmon/max197.c | |||
@@ -339,7 +339,7 @@ static struct platform_driver max197_driver = { | |||
339 | .owner = THIS_MODULE, | 339 | .owner = THIS_MODULE, |
340 | }, | 340 | }, |
341 | .probe = max197_probe, | 341 | .probe = max197_probe, |
342 | .remove = __devexit_p(max197_remove), | 342 | .remove = max197_remove, |
343 | .id_table = max197_device_ids, | 343 | .id_table = max197_device_ids, |
344 | }; | 344 | }; |
345 | module_platform_driver(max197_driver); | 345 | module_platform_driver(max197_driver); |
diff --git a/drivers/hwmon/mc13783-adc.c b/drivers/hwmon/mc13783-adc.c index cf47a59657a9..50032ee45a3b 100644 --- a/drivers/hwmon/mc13783-adc.c +++ b/drivers/hwmon/mc13783-adc.c | |||
@@ -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, |
diff --git a/drivers/hwmon/ntc_thermistor.c b/drivers/hwmon/ntc_thermistor.c index 74a6c58d0218..dd232307780d 100644 --- a/drivers/hwmon/ntc_thermistor.c +++ b/drivers/hwmon/ntc_thermistor.c | |||
@@ -419,7 +419,7 @@ static struct platform_driver ntc_thermistor_driver = { | |||
419 | .owner = THIS_MODULE, | 419 | .owner = THIS_MODULE, |
420 | }, | 420 | }, |
421 | .probe = ntc_thermistor_probe, | 421 | .probe = ntc_thermistor_probe, |
422 | .remove = __devexit_p(ntc_thermistor_remove), | 422 | .remove = ntc_thermistor_remove, |
423 | .id_table = ntc_thermistor_id, | 423 | .id_table = ntc_thermistor_id, |
424 | }; | 424 | }; |
425 | 425 | ||
diff --git a/drivers/hwmon/pc87360.c b/drivers/hwmon/pc87360.c index 91d5b2a21dd9..07856630354b 100644 --- a/drivers/hwmon/pc87360.c +++ b/drivers/hwmon/pc87360.c | |||
@@ -248,7 +248,7 @@ static struct platform_driver pc87360_driver = { | |||
248 | .name = "pc87360", | 248 | .name = "pc87360", |
249 | }, | 249 | }, |
250 | .probe = pc87360_probe, | 250 | .probe = pc87360_probe, |
251 | .remove = __devexit_p(pc87360_remove), | 251 | .remove = pc87360_remove, |
252 | }; | 252 | }; |
253 | 253 | ||
254 | /* | 254 | /* |
diff --git a/drivers/hwmon/pc87427.c b/drivers/hwmon/pc87427.c index f185b1fa53e5..288a775c6878 100644 --- a/drivers/hwmon/pc87427.c +++ b/drivers/hwmon/pc87427.c | |||
@@ -1158,7 +1158,7 @@ static struct platform_driver pc87427_driver = { | |||
1158 | .name = DRVNAME, | 1158 | .name = DRVNAME, |
1159 | }, | 1159 | }, |
1160 | .probe = pc87427_probe, | 1160 | .probe = pc87427_probe, |
1161 | .remove = __devexit_p(pc87427_remove), | 1161 | .remove = pc87427_remove, |
1162 | }; | 1162 | }; |
1163 | 1163 | ||
1164 | static int __init pc87427_device_add(const struct pc87427_sio_data *sio_data) | 1164 | static int __init pc87427_device_add(const struct pc87427_sio_data *sio_data) |
diff --git a/drivers/hwmon/s3c-hwmon.c b/drivers/hwmon/s3c-hwmon.c index bcecd025fcc4..df405e3696a9 100644 --- a/drivers/hwmon/s3c-hwmon.c +++ b/drivers/hwmon/s3c-hwmon.c | |||
@@ -386,7 +386,7 @@ static struct platform_driver s3c_hwmon_driver = { | |||
386 | .owner = THIS_MODULE, | 386 | .owner = THIS_MODULE, |
387 | }, | 387 | }, |
388 | .probe = s3c_hwmon_probe, | 388 | .probe = s3c_hwmon_probe, |
389 | .remove = __devexit_p(s3c_hwmon_remove), | 389 | .remove = s3c_hwmon_remove, |
390 | }; | 390 | }; |
391 | 391 | ||
392 | module_platform_driver(s3c_hwmon_driver); | 392 | module_platform_driver(s3c_hwmon_driver); |
diff --git a/drivers/hwmon/sht15.c b/drivers/hwmon/sht15.c index 07a0c1a0b84d..32e3b29b1961 100644 --- a/drivers/hwmon/sht15.c +++ b/drivers/hwmon/sht15.c | |||
@@ -1043,7 +1043,7 @@ static struct platform_driver sht15_driver = { | |||
1043 | .owner = THIS_MODULE, | 1043 | .owner = THIS_MODULE, |
1044 | }, | 1044 | }, |
1045 | .probe = sht15_probe, | 1045 | .probe = sht15_probe, |
1046 | .remove = __devexit_p(sht15_remove), | 1046 | .remove = sht15_remove, |
1047 | .id_table = sht15_device_ids, | 1047 | .id_table = sht15_device_ids, |
1048 | }; | 1048 | }; |
1049 | module_platform_driver(sht15_driver); | 1049 | module_platform_driver(sht15_driver); |
diff --git a/drivers/hwmon/sht21.c b/drivers/hwmon/sht21.c index 5f67546950b1..3ffd3b3deb04 100644 --- a/drivers/hwmon/sht21.c +++ b/drivers/hwmon/sht21.c | |||
@@ -253,7 +253,7 @@ MODULE_DEVICE_TABLE(i2c, sht21_id); | |||
253 | static struct i2c_driver sht21_driver = { | 253 | static struct i2c_driver sht21_driver = { |
254 | .driver.name = "sht21", | 254 | .driver.name = "sht21", |
255 | .probe = sht21_probe, | 255 | .probe = sht21_probe, |
256 | .remove = __devexit_p(sht21_remove), | 256 | .remove = sht21_remove, |
257 | .id_table = sht21_id, | 257 | .id_table = sht21_id, |
258 | }; | 258 | }; |
259 | 259 | ||
diff --git a/drivers/hwmon/sis5595.c b/drivers/hwmon/sis5595.c index 8275f0e14eb7..fb6b6ed6accd 100644 --- a/drivers/hwmon/sis5595.c +++ b/drivers/hwmon/sis5595.c | |||
@@ -217,7 +217,7 @@ static struct platform_driver sis5595_driver = { | |||
217 | .name = "sis5595", | 217 | .name = "sis5595", |
218 | }, | 218 | }, |
219 | .probe = sis5595_probe, | 219 | .probe = sis5595_probe, |
220 | .remove = __devexit_p(sis5595_remove), | 220 | .remove = sis5595_remove, |
221 | }; | 221 | }; |
222 | 222 | ||
223 | /* 4 Voltages */ | 223 | /* 4 Voltages */ |
diff --git a/drivers/hwmon/smsc47b397.c b/drivers/hwmon/smsc47b397.c index 65b07de11a0f..6edad30be3e3 100644 --- a/drivers/hwmon/smsc47b397.c +++ b/drivers/hwmon/smsc47b397.c | |||
@@ -246,7 +246,7 @@ static struct platform_driver smsc47b397_driver = { | |||
246 | .name = DRVNAME, | 246 | .name = DRVNAME, |
247 | }, | 247 | }, |
248 | .probe = smsc47b397_probe, | 248 | .probe = smsc47b397_probe, |
249 | .remove = __devexit_p(smsc47b397_remove), | 249 | .remove = smsc47b397_remove, |
250 | }; | 250 | }; |
251 | 251 | ||
252 | static int __devinit smsc47b397_probe(struct platform_device *pdev) | 252 | static int __devinit smsc47b397_probe(struct platform_device *pdev) |
diff --git a/drivers/hwmon/tmp102.c b/drivers/hwmon/tmp102.c index b8777e54190a..ec11400dc980 100644 --- a/drivers/hwmon/tmp102.c +++ b/drivers/hwmon/tmp102.c | |||
@@ -283,7 +283,7 @@ static struct i2c_driver tmp102_driver = { | |||
283 | .driver.name = DRIVER_NAME, | 283 | .driver.name = DRIVER_NAME, |
284 | .driver.pm = TMP102_DEV_PM_OPS, | 284 | .driver.pm = TMP102_DEV_PM_OPS, |
285 | .probe = tmp102_probe, | 285 | .probe = tmp102_probe, |
286 | .remove = __devexit_p(tmp102_remove), | 286 | .remove = tmp102_remove, |
287 | .id_table = tmp102_id, | 287 | .id_table = tmp102_id, |
288 | }; | 288 | }; |
289 | 289 | ||
diff --git a/drivers/hwmon/ultra45_env.c b/drivers/hwmon/ultra45_env.c index 44136bb6d045..89747b8ac818 100644 --- a/drivers/hwmon/ultra45_env.c +++ b/drivers/hwmon/ultra45_env.c | |||
@@ -321,7 +321,7 @@ static struct platform_driver env_driver = { | |||
321 | .of_match_table = env_match, | 321 | .of_match_table = env_match, |
322 | }, | 322 | }, |
323 | .probe = env_probe, | 323 | .probe = env_probe, |
324 | .remove = __devexit_p(env_remove), | 324 | .remove = env_remove, |
325 | }; | 325 | }; |
326 | 326 | ||
327 | module_platform_driver(env_driver); | 327 | module_platform_driver(env_driver); |
diff --git a/drivers/hwmon/via-cputemp.c b/drivers/hwmon/via-cputemp.c index 4cddee04f2e6..6021b7f3e364 100644 --- a/drivers/hwmon/via-cputemp.c +++ b/drivers/hwmon/via-cputemp.c | |||
@@ -209,7 +209,7 @@ static struct platform_driver via_cputemp_driver = { | |||
209 | .name = DRVNAME, | 209 | .name = DRVNAME, |
210 | }, | 210 | }, |
211 | .probe = via_cputemp_probe, | 211 | .probe = via_cputemp_probe, |
212 | .remove = __devexit_p(via_cputemp_remove), | 212 | .remove = via_cputemp_remove, |
213 | }; | 213 | }; |
214 | 214 | ||
215 | struct pdev_entry { | 215 | struct pdev_entry { |
diff --git a/drivers/hwmon/via686a.c b/drivers/hwmon/via686a.c index 299399aa30fe..b2c155d6939f 100644 --- a/drivers/hwmon/via686a.c +++ b/drivers/hwmon/via686a.c | |||
@@ -677,7 +677,7 @@ static struct platform_driver via686a_driver = { | |||
677 | .name = "via686a", | 677 | .name = "via686a", |
678 | }, | 678 | }, |
679 | .probe = via686a_probe, | 679 | .probe = via686a_probe, |
680 | .remove = __devexit_p(via686a_remove), | 680 | .remove = via686a_remove, |
681 | }; | 681 | }; |
682 | 682 | ||
683 | 683 | ||
diff --git a/drivers/hwmon/vt1211.c b/drivers/hwmon/vt1211.c index f2c61153dba9..07ec260abb43 100644 --- a/drivers/hwmon/vt1211.c +++ b/drivers/hwmon/vt1211.c | |||
@@ -1233,7 +1233,7 @@ static struct platform_driver vt1211_driver = { | |||
1233 | .name = DRVNAME, | 1233 | .name = DRVNAME, |
1234 | }, | 1234 | }, |
1235 | .probe = vt1211_probe, | 1235 | .probe = vt1211_probe, |
1236 | .remove = __devexit_p(vt1211_remove), | 1236 | .remove = vt1211_remove, |
1237 | }; | 1237 | }; |
1238 | 1238 | ||
1239 | static int __init vt1211_device_add(unsigned short address) | 1239 | static int __init vt1211_device_add(unsigned short address) |
diff --git a/drivers/hwmon/vt8231.c b/drivers/hwmon/vt8231.c index 84e3dc5e3a83..28f95bdf0358 100644 --- a/drivers/hwmon/vt8231.c +++ b/drivers/hwmon/vt8231.c | |||
@@ -762,7 +762,7 @@ static struct platform_driver vt8231_driver = { | |||
762 | .name = "vt8231", | 762 | .name = "vt8231", |
763 | }, | 763 | }, |
764 | .probe = vt8231_probe, | 764 | .probe = vt8231_probe, |
765 | .remove = __devexit_p(vt8231_remove), | 765 | .remove = vt8231_remove, |
766 | }; | 766 | }; |
767 | 767 | ||
768 | static DEFINE_PCI_DEVICE_TABLE(vt8231_pci_ids) = { | 768 | static DEFINE_PCI_DEVICE_TABLE(vt8231_pci_ids) = { |
diff --git a/drivers/hwmon/w83627ehf.c b/drivers/hwmon/w83627ehf.c index de3c7e04c3b5..c7e0794ce072 100644 --- a/drivers/hwmon/w83627ehf.c +++ b/drivers/hwmon/w83627ehf.c | |||
@@ -2614,7 +2614,7 @@ static struct platform_driver w83627ehf_driver = { | |||
2614 | .name = DRVNAME, | 2614 | .name = DRVNAME, |
2615 | }, | 2615 | }, |
2616 | .probe = w83627ehf_probe, | 2616 | .probe = w83627ehf_probe, |
2617 | .remove = __devexit_p(w83627ehf_remove), | 2617 | .remove = w83627ehf_remove, |
2618 | }; | 2618 | }; |
2619 | 2619 | ||
2620 | /* w83627ehf_find() looks for a '627 in the Super-I/O config space */ | 2620 | /* w83627ehf_find() looks for a '627 in the Super-I/O config space */ |
diff --git a/drivers/hwmon/w83627hf.c b/drivers/hwmon/w83627hf.c index af1589908709..3aff01505c86 100644 --- a/drivers/hwmon/w83627hf.c +++ b/drivers/hwmon/w83627hf.c | |||
@@ -407,7 +407,7 @@ static struct platform_driver w83627hf_driver = { | |||
407 | .name = DRVNAME, | 407 | .name = DRVNAME, |
408 | }, | 408 | }, |
409 | .probe = w83627hf_probe, | 409 | .probe = w83627hf_probe, |
410 | .remove = __devexit_p(w83627hf_remove), | 410 | .remove = w83627hf_remove, |
411 | }; | 411 | }; |
412 | 412 | ||
413 | static ssize_t | 413 | static ssize_t |
diff --git a/drivers/hwmon/w83781d.c b/drivers/hwmon/w83781d.c index 20f11d31da40..becd9d66c077 100644 --- a/drivers/hwmon/w83781d.c +++ b/drivers/hwmon/w83781d.c | |||
@@ -1842,7 +1842,7 @@ static struct platform_driver w83781d_isa_driver = { | |||
1842 | .name = "w83781d", | 1842 | .name = "w83781d", |
1843 | }, | 1843 | }, |
1844 | .probe = w83781d_isa_probe, | 1844 | .probe = w83781d_isa_probe, |
1845 | .remove = __devexit_p(w83781d_isa_remove), | 1845 | .remove = w83781d_isa_remove, |
1846 | }; | 1846 | }; |
1847 | 1847 | ||
1848 | /* return 1 if a supported chip is found, 0 otherwise */ | 1848 | /* return 1 if a supported chip is found, 0 otherwise */ |
diff --git a/drivers/hwmon/wm831x-hwmon.c b/drivers/hwmon/wm831x-hwmon.c index d0db1f2738fb..d77bdf4d1123 100644 --- a/drivers/hwmon/wm831x-hwmon.c +++ b/drivers/hwmon/wm831x-hwmon.c | |||
@@ -201,7 +201,7 @@ static int __devexit wm831x_hwmon_remove(struct platform_device *pdev) | |||
201 | 201 | ||
202 | static struct platform_driver wm831x_hwmon_driver = { | 202 | static struct platform_driver wm831x_hwmon_driver = { |
203 | .probe = wm831x_hwmon_probe, | 203 | .probe = wm831x_hwmon_probe, |
204 | .remove = __devexit_p(wm831x_hwmon_remove), | 204 | .remove = wm831x_hwmon_remove, |
205 | .driver = { | 205 | .driver = { |
206 | .name = "wm831x-hwmon", | 206 | .name = "wm831x-hwmon", |
207 | .owner = THIS_MODULE, | 207 | .owner = THIS_MODULE, |
diff --git a/drivers/hwmon/wm8350-hwmon.c b/drivers/hwmon/wm8350-hwmon.c index b955756bdb42..9544485cc8dd 100644 --- a/drivers/hwmon/wm8350-hwmon.c +++ b/drivers/hwmon/wm8350-hwmon.c | |||
@@ -126,7 +126,7 @@ static int __devexit wm8350_hwmon_remove(struct platform_device *pdev) | |||
126 | 126 | ||
127 | static struct platform_driver wm8350_hwmon_driver = { | 127 | static struct platform_driver wm8350_hwmon_driver = { |
128 | .probe = wm8350_hwmon_probe, | 128 | .probe = wm8350_hwmon_probe, |
129 | .remove = __devexit_p(wm8350_hwmon_remove), | 129 | .remove = wm8350_hwmon_remove, |
130 | .driver = { | 130 | .driver = { |
131 | .name = "wm8350-hwmon", | 131 | .name = "wm8350-hwmon", |
132 | .owner = THIS_MODULE, | 132 | .owner = THIS_MODULE, |