diff options
Diffstat (limited to 'drivers/input/touchscreen')
39 files changed, 39 insertions, 39 deletions
diff --git a/drivers/input/touchscreen/88pm860x-ts.c b/drivers/input/touchscreen/88pm860x-ts.c index 326218dbd6e6..e609db85bea1 100644 --- a/drivers/input/touchscreen/88pm860x-ts.c +++ b/drivers/input/touchscreen/88pm860x-ts.c | |||
@@ -310,7 +310,7 @@ static struct platform_driver pm860x_touch_driver = { | |||
310 | .owner = THIS_MODULE, | 310 | .owner = THIS_MODULE, |
311 | }, | 311 | }, |
312 | .probe = pm860x_touch_probe, | 312 | .probe = pm860x_touch_probe, |
313 | .remove = __devexit_p(pm860x_touch_remove), | 313 | .remove = pm860x_touch_remove, |
314 | }; | 314 | }; |
315 | module_platform_driver(pm860x_touch_driver); | 315 | module_platform_driver(pm860x_touch_driver); |
316 | 316 | ||
diff --git a/drivers/input/touchscreen/ad7877.c b/drivers/input/touchscreen/ad7877.c index 2c7692108e6c..d2df6a48ba65 100644 --- a/drivers/input/touchscreen/ad7877.c +++ b/drivers/input/touchscreen/ad7877.c | |||
@@ -857,7 +857,7 @@ static struct spi_driver ad7877_driver = { | |||
857 | .pm = &ad7877_pm, | 857 | .pm = &ad7877_pm, |
858 | }, | 858 | }, |
859 | .probe = ad7877_probe, | 859 | .probe = ad7877_probe, |
860 | .remove = __devexit_p(ad7877_remove), | 860 | .remove = ad7877_remove, |
861 | }; | 861 | }; |
862 | 862 | ||
863 | module_spi_driver(ad7877_driver); | 863 | module_spi_driver(ad7877_driver); |
diff --git a/drivers/input/touchscreen/ad7879-i2c.c b/drivers/input/touchscreen/ad7879-i2c.c index 3054354d0dd3..850c95d69198 100644 --- a/drivers/input/touchscreen/ad7879-i2c.c +++ b/drivers/input/touchscreen/ad7879-i2c.c | |||
@@ -98,7 +98,7 @@ static struct i2c_driver ad7879_i2c_driver = { | |||
98 | .pm = &ad7879_pm_ops, | 98 | .pm = &ad7879_pm_ops, |
99 | }, | 99 | }, |
100 | .probe = ad7879_i2c_probe, | 100 | .probe = ad7879_i2c_probe, |
101 | .remove = __devexit_p(ad7879_i2c_remove), | 101 | .remove = ad7879_i2c_remove, |
102 | .id_table = ad7879_id, | 102 | .id_table = ad7879_id, |
103 | }; | 103 | }; |
104 | 104 | ||
diff --git a/drivers/input/touchscreen/ad7879-spi.c b/drivers/input/touchscreen/ad7879-spi.c index db49abf056ba..86b0fdb6046b 100644 --- a/drivers/input/touchscreen/ad7879-spi.c +++ b/drivers/input/touchscreen/ad7879-spi.c | |||
@@ -154,7 +154,7 @@ static struct spi_driver ad7879_spi_driver = { | |||
154 | .pm = &ad7879_pm_ops, | 154 | .pm = &ad7879_pm_ops, |
155 | }, | 155 | }, |
156 | .probe = ad7879_spi_probe, | 156 | .probe = ad7879_spi_probe, |
157 | .remove = __devexit_p(ad7879_spi_remove), | 157 | .remove = ad7879_spi_remove, |
158 | }; | 158 | }; |
159 | 159 | ||
160 | module_spi_driver(ad7879_spi_driver); | 160 | module_spi_driver(ad7879_spi_driver); |
diff --git a/drivers/input/touchscreen/ads7846.c b/drivers/input/touchscreen/ads7846.c index 78e5d9ab0ba7..560484de0bfb 100644 --- a/drivers/input/touchscreen/ads7846.c +++ b/drivers/input/touchscreen/ads7846.c | |||
@@ -1434,7 +1434,7 @@ static struct spi_driver ads7846_driver = { | |||
1434 | .pm = &ads7846_pm, | 1434 | .pm = &ads7846_pm, |
1435 | }, | 1435 | }, |
1436 | .probe = ads7846_probe, | 1436 | .probe = ads7846_probe, |
1437 | .remove = __devexit_p(ads7846_remove), | 1437 | .remove = ads7846_remove, |
1438 | }; | 1438 | }; |
1439 | 1439 | ||
1440 | module_spi_driver(ads7846_driver); | 1440 | module_spi_driver(ads7846_driver); |
diff --git a/drivers/input/touchscreen/atmel_mxt_ts.c b/drivers/input/touchscreen/atmel_mxt_ts.c index 1df2396af008..6199303d9d3c 100644 --- a/drivers/input/touchscreen/atmel_mxt_ts.c +++ b/drivers/input/touchscreen/atmel_mxt_ts.c | |||
@@ -1270,7 +1270,7 @@ static struct i2c_driver mxt_driver = { | |||
1270 | .pm = &mxt_pm_ops, | 1270 | .pm = &mxt_pm_ops, |
1271 | }, | 1271 | }, |
1272 | .probe = mxt_probe, | 1272 | .probe = mxt_probe, |
1273 | .remove = __devexit_p(mxt_remove), | 1273 | .remove = mxt_remove, |
1274 | .id_table = mxt_id, | 1274 | .id_table = mxt_id, |
1275 | }; | 1275 | }; |
1276 | 1276 | ||
diff --git a/drivers/input/touchscreen/atmel_tsadcc.c b/drivers/input/touchscreen/atmel_tsadcc.c index 201b2d2ec1b3..53712b9142a5 100644 --- a/drivers/input/touchscreen/atmel_tsadcc.c +++ b/drivers/input/touchscreen/atmel_tsadcc.c | |||
@@ -346,7 +346,7 @@ static int __devexit atmel_tsadcc_remove(struct platform_device *pdev) | |||
346 | 346 | ||
347 | static struct platform_driver atmel_tsadcc_driver = { | 347 | static struct platform_driver atmel_tsadcc_driver = { |
348 | .probe = atmel_tsadcc_probe, | 348 | .probe = atmel_tsadcc_probe, |
349 | .remove = __devexit_p(atmel_tsadcc_remove), | 349 | .remove = atmel_tsadcc_remove, |
350 | .driver = { | 350 | .driver = { |
351 | .name = "atmel_tsadcc", | 351 | .name = "atmel_tsadcc", |
352 | }, | 352 | }, |
diff --git a/drivers/input/touchscreen/auo-pixcir-ts.c b/drivers/input/touchscreen/auo-pixcir-ts.c index c7047b6bb020..912926dd97c0 100644 --- a/drivers/input/touchscreen/auo-pixcir-ts.c +++ b/drivers/input/touchscreen/auo-pixcir-ts.c | |||
@@ -631,7 +631,7 @@ static struct i2c_driver auo_pixcir_driver = { | |||
631 | .pm = &auo_pixcir_pm_ops, | 631 | .pm = &auo_pixcir_pm_ops, |
632 | }, | 632 | }, |
633 | .probe = auo_pixcir_probe, | 633 | .probe = auo_pixcir_probe, |
634 | .remove = __devexit_p(auo_pixcir_remove), | 634 | .remove = auo_pixcir_remove, |
635 | .id_table = auo_pixcir_idtable, | 635 | .id_table = auo_pixcir_idtable, |
636 | }; | 636 | }; |
637 | 637 | ||
diff --git a/drivers/input/touchscreen/bu21013_ts.c b/drivers/input/touchscreen/bu21013_ts.c index 5c487d23f11c..c2be1fe51923 100644 --- a/drivers/input/touchscreen/bu21013_ts.c +++ b/drivers/input/touchscreen/bu21013_ts.c | |||
@@ -649,7 +649,7 @@ static struct i2c_driver bu21013_driver = { | |||
649 | #endif | 649 | #endif |
650 | }, | 650 | }, |
651 | .probe = bu21013_probe, | 651 | .probe = bu21013_probe, |
652 | .remove = __devexit_p(bu21013_remove), | 652 | .remove = bu21013_remove, |
653 | .id_table = bu21013_id, | 653 | .id_table = bu21013_id, |
654 | }; | 654 | }; |
655 | 655 | ||
diff --git a/drivers/input/touchscreen/cy8ctmg110_ts.c b/drivers/input/touchscreen/cy8ctmg110_ts.c index ad6a6640f385..9a2044f978ae 100644 --- a/drivers/input/touchscreen/cy8ctmg110_ts.c +++ b/drivers/input/touchscreen/cy8ctmg110_ts.c | |||
@@ -357,7 +357,7 @@ static struct i2c_driver cy8ctmg110_driver = { | |||
357 | }, | 357 | }, |
358 | .id_table = cy8ctmg110_idtable, | 358 | .id_table = cy8ctmg110_idtable, |
359 | .probe = cy8ctmg110_probe, | 359 | .probe = cy8ctmg110_probe, |
360 | .remove = __devexit_p(cy8ctmg110_remove), | 360 | .remove = cy8ctmg110_remove, |
361 | }; | 361 | }; |
362 | 362 | ||
363 | module_i2c_driver(cy8ctmg110_driver); | 363 | module_i2c_driver(cy8ctmg110_driver); |
diff --git a/drivers/input/touchscreen/cyttsp_i2c.c b/drivers/input/touchscreen/cyttsp_i2c.c index 2af1d0c52bcd..1a7aca935b26 100644 --- a/drivers/input/touchscreen/cyttsp_i2c.c +++ b/drivers/input/touchscreen/cyttsp_i2c.c | |||
@@ -124,7 +124,7 @@ static struct i2c_driver cyttsp_i2c_driver = { | |||
124 | .pm = &cyttsp_pm_ops, | 124 | .pm = &cyttsp_pm_ops, |
125 | }, | 125 | }, |
126 | .probe = cyttsp_i2c_probe, | 126 | .probe = cyttsp_i2c_probe, |
127 | .remove = __devexit_p(cyttsp_i2c_remove), | 127 | .remove = cyttsp_i2c_remove, |
128 | .id_table = cyttsp_i2c_id, | 128 | .id_table = cyttsp_i2c_id, |
129 | }; | 129 | }; |
130 | 130 | ||
diff --git a/drivers/input/touchscreen/cyttsp_spi.c b/drivers/input/touchscreen/cyttsp_spi.c index 9f263410407b..915af4cfe2b2 100644 --- a/drivers/input/touchscreen/cyttsp_spi.c +++ b/drivers/input/touchscreen/cyttsp_spi.c | |||
@@ -188,7 +188,7 @@ static struct spi_driver cyttsp_spi_driver = { | |||
188 | .pm = &cyttsp_pm_ops, | 188 | .pm = &cyttsp_pm_ops, |
189 | }, | 189 | }, |
190 | .probe = cyttsp_spi_probe, | 190 | .probe = cyttsp_spi_probe, |
191 | .remove = __devexit_p(cyttsp_spi_remove), | 191 | .remove = cyttsp_spi_remove, |
192 | }; | 192 | }; |
193 | 193 | ||
194 | module_spi_driver(cyttsp_spi_driver); | 194 | module_spi_driver(cyttsp_spi_driver); |
diff --git a/drivers/input/touchscreen/da9034-ts.c b/drivers/input/touchscreen/da9034-ts.c index 36b65cf10d7f..ec156a6bf59d 100644 --- a/drivers/input/touchscreen/da9034-ts.c +++ b/drivers/input/touchscreen/da9034-ts.c | |||
@@ -377,7 +377,7 @@ static struct platform_driver da9034_touch_driver = { | |||
377 | .owner = THIS_MODULE, | 377 | .owner = THIS_MODULE, |
378 | }, | 378 | }, |
379 | .probe = da9034_touch_probe, | 379 | .probe = da9034_touch_probe, |
380 | .remove = __devexit_p(da9034_touch_remove), | 380 | .remove = da9034_touch_remove, |
381 | }; | 381 | }; |
382 | module_platform_driver(da9034_touch_driver); | 382 | module_platform_driver(da9034_touch_driver); |
383 | 383 | ||
diff --git a/drivers/input/touchscreen/da9052_tsi.c b/drivers/input/touchscreen/da9052_tsi.c index e8df341090c0..5dfb39b21c90 100644 --- a/drivers/input/touchscreen/da9052_tsi.c +++ b/drivers/input/touchscreen/da9052_tsi.c | |||
@@ -355,7 +355,7 @@ static int __devexit da9052_ts_remove(struct platform_device *pdev) | |||
355 | 355 | ||
356 | static struct platform_driver da9052_tsi_driver = { | 356 | static struct platform_driver da9052_tsi_driver = { |
357 | .probe = da9052_ts_probe, | 357 | .probe = da9052_ts_probe, |
358 | .remove = __devexit_p(da9052_ts_remove), | 358 | .remove = da9052_ts_remove, |
359 | .driver = { | 359 | .driver = { |
360 | .name = "da9052-tsi", | 360 | .name = "da9052-tsi", |
361 | .owner = THIS_MODULE, | 361 | .owner = THIS_MODULE, |
diff --git a/drivers/input/touchscreen/edt-ft5x06.c b/drivers/input/touchscreen/edt-ft5x06.c index d9c6007e445f..65ed9d958e5f 100644 --- a/drivers/input/touchscreen/edt-ft5x06.c +++ b/drivers/input/touchscreen/edt-ft5x06.c | |||
@@ -883,7 +883,7 @@ static struct i2c_driver edt_ft5x06_ts_driver = { | |||
883 | }, | 883 | }, |
884 | .id_table = edt_ft5x06_ts_id, | 884 | .id_table = edt_ft5x06_ts_id, |
885 | .probe = edt_ft5x06_ts_probe, | 885 | .probe = edt_ft5x06_ts_probe, |
886 | .remove = __devexit_p(edt_ft5x06_ts_remove), | 886 | .remove = edt_ft5x06_ts_remove, |
887 | }; | 887 | }; |
888 | 888 | ||
889 | module_i2c_driver(edt_ft5x06_ts_driver); | 889 | module_i2c_driver(edt_ft5x06_ts_driver); |
diff --git a/drivers/input/touchscreen/eeti_ts.c b/drivers/input/touchscreen/eeti_ts.c index 908407efc672..a2d9a65e586d 100644 --- a/drivers/input/touchscreen/eeti_ts.c +++ b/drivers/input/touchscreen/eeti_ts.c | |||
@@ -321,7 +321,7 @@ static struct i2c_driver eeti_ts_driver = { | |||
321 | #endif | 321 | #endif |
322 | }, | 322 | }, |
323 | .probe = eeti_ts_probe, | 323 | .probe = eeti_ts_probe, |
324 | .remove = __devexit_p(eeti_ts_remove), | 324 | .remove = eeti_ts_remove, |
325 | .id_table = eeti_ts_id, | 325 | .id_table = eeti_ts_id, |
326 | }; | 326 | }; |
327 | 327 | ||
diff --git a/drivers/input/touchscreen/egalax_ts.c b/drivers/input/touchscreen/egalax_ts.c index 13fa62fdfb0b..d85078d06497 100644 --- a/drivers/input/touchscreen/egalax_ts.c +++ b/drivers/input/touchscreen/egalax_ts.c | |||
@@ -301,7 +301,7 @@ static struct i2c_driver egalax_ts_driver = { | |||
301 | }, | 301 | }, |
302 | .id_table = egalax_ts_id, | 302 | .id_table = egalax_ts_id, |
303 | .probe = egalax_ts_probe, | 303 | .probe = egalax_ts_probe, |
304 | .remove = __devexit_p(egalax_ts_remove), | 304 | .remove = egalax_ts_remove, |
305 | }; | 305 | }; |
306 | 306 | ||
307 | module_i2c_driver(egalax_ts_driver); | 307 | module_i2c_driver(egalax_ts_driver); |
diff --git a/drivers/input/touchscreen/htcpen.c b/drivers/input/touchscreen/htcpen.c index d13143b68b3e..5cc3240139ec 100644 --- a/drivers/input/touchscreen/htcpen.c +++ b/drivers/input/touchscreen/htcpen.c | |||
@@ -210,7 +210,7 @@ static int htcpen_isa_resume(struct device *dev, unsigned int n) | |||
210 | 210 | ||
211 | static struct isa_driver htcpen_isa_driver = { | 211 | static struct isa_driver htcpen_isa_driver = { |
212 | .probe = htcpen_isa_probe, | 212 | .probe = htcpen_isa_probe, |
213 | .remove = __devexit_p(htcpen_isa_remove), | 213 | .remove = htcpen_isa_remove, |
214 | #ifdef CONFIG_PM | 214 | #ifdef CONFIG_PM |
215 | .suspend = htcpen_isa_suspend, | 215 | .suspend = htcpen_isa_suspend, |
216 | .resume = htcpen_isa_resume, | 216 | .resume = htcpen_isa_resume, |
diff --git a/drivers/input/touchscreen/ili210x.c b/drivers/input/touchscreen/ili210x.c index 4ac69760ec08..e8fd6c26b76c 100644 --- a/drivers/input/touchscreen/ili210x.c +++ b/drivers/input/touchscreen/ili210x.c | |||
@@ -350,7 +350,7 @@ static struct i2c_driver ili210x_ts_driver = { | |||
350 | }, | 350 | }, |
351 | .id_table = ili210x_i2c_id, | 351 | .id_table = ili210x_i2c_id, |
352 | .probe = ili210x_i2c_probe, | 352 | .probe = ili210x_i2c_probe, |
353 | .remove = __devexit_p(ili210x_i2c_remove), | 353 | .remove = ili210x_i2c_remove, |
354 | }; | 354 | }; |
355 | 355 | ||
356 | module_i2c_driver(ili210x_ts_driver); | 356 | module_i2c_driver(ili210x_ts_driver); |
diff --git a/drivers/input/touchscreen/intel-mid-touch.c b/drivers/input/touchscreen/intel-mid-touch.c index cf299377fc49..f27364f7ad11 100644 --- a/drivers/input/touchscreen/intel-mid-touch.c +++ b/drivers/input/touchscreen/intel-mid-touch.c | |||
@@ -662,7 +662,7 @@ static struct platform_driver mrstouch_driver = { | |||
662 | .owner = THIS_MODULE, | 662 | .owner = THIS_MODULE, |
663 | }, | 663 | }, |
664 | .probe = mrstouch_probe, | 664 | .probe = mrstouch_probe, |
665 | .remove = __devexit_p(mrstouch_remove), | 665 | .remove = mrstouch_remove, |
666 | }; | 666 | }; |
667 | module_platform_driver(mrstouch_driver); | 667 | module_platform_driver(mrstouch_driver); |
668 | 668 | ||
diff --git a/drivers/input/touchscreen/jornada720_ts.c b/drivers/input/touchscreen/jornada720_ts.c index 7f03d1bd916e..ad35c8ceac26 100644 --- a/drivers/input/touchscreen/jornada720_ts.c +++ b/drivers/input/touchscreen/jornada720_ts.c | |||
@@ -168,7 +168,7 @@ MODULE_ALIAS("platform:jornada_ts"); | |||
168 | 168 | ||
169 | static struct platform_driver jornada720_ts_driver = { | 169 | static struct platform_driver jornada720_ts_driver = { |
170 | .probe = jornada720_ts_probe, | 170 | .probe = jornada720_ts_probe, |
171 | .remove = __devexit_p(jornada720_ts_remove), | 171 | .remove = jornada720_ts_remove, |
172 | .driver = { | 172 | .driver = { |
173 | .name = "jornada_ts", | 173 | .name = "jornada_ts", |
174 | .owner = THIS_MODULE, | 174 | .owner = THIS_MODULE, |
diff --git a/drivers/input/touchscreen/lpc32xx_ts.c b/drivers/input/touchscreen/lpc32xx_ts.c index 4c2b8ed3bf16..8134f6100de0 100644 --- a/drivers/input/touchscreen/lpc32xx_ts.c +++ b/drivers/input/touchscreen/lpc32xx_ts.c | |||
@@ -394,7 +394,7 @@ MODULE_DEVICE_TABLE(of, lpc32xx_tsc_of_match); | |||
394 | 394 | ||
395 | static struct platform_driver lpc32xx_ts_driver = { | 395 | static struct platform_driver lpc32xx_ts_driver = { |
396 | .probe = lpc32xx_ts_probe, | 396 | .probe = lpc32xx_ts_probe, |
397 | .remove = __devexit_p(lpc32xx_ts_remove), | 397 | .remove = lpc32xx_ts_remove, |
398 | .driver = { | 398 | .driver = { |
399 | .name = MOD_NAME, | 399 | .name = MOD_NAME, |
400 | .owner = THIS_MODULE, | 400 | .owner = THIS_MODULE, |
diff --git a/drivers/input/touchscreen/max11801_ts.c b/drivers/input/touchscreen/max11801_ts.c index 4eab50b856d7..e3e637f01609 100644 --- a/drivers/input/touchscreen/max11801_ts.c +++ b/drivers/input/touchscreen/max11801_ts.c | |||
@@ -252,7 +252,7 @@ static struct i2c_driver max11801_ts_driver = { | |||
252 | }, | 252 | }, |
253 | .id_table = max11801_ts_id, | 253 | .id_table = max11801_ts_id, |
254 | .probe = max11801_ts_probe, | 254 | .probe = max11801_ts_probe, |
255 | .remove = __devexit_p(max11801_ts_remove), | 255 | .remove = max11801_ts_remove, |
256 | }; | 256 | }; |
257 | 257 | ||
258 | module_i2c_driver(max11801_ts_driver); | 258 | module_i2c_driver(max11801_ts_driver); |
diff --git a/drivers/input/touchscreen/mc13783_ts.c b/drivers/input/touchscreen/mc13783_ts.c index 48dc5b0d26f1..5c18c5cb9f7a 100644 --- a/drivers/input/touchscreen/mc13783_ts.c +++ b/drivers/input/touchscreen/mc13783_ts.c | |||
@@ -243,7 +243,7 @@ static int __devexit mc13783_ts_remove(struct platform_device *pdev) | |||
243 | } | 243 | } |
244 | 244 | ||
245 | static struct platform_driver mc13783_ts_driver = { | 245 | static struct platform_driver mc13783_ts_driver = { |
246 | .remove = __devexit_p(mc13783_ts_remove), | 246 | .remove = mc13783_ts_remove, |
247 | .driver = { | 247 | .driver = { |
248 | .owner = THIS_MODULE, | 248 | .owner = THIS_MODULE, |
249 | .name = MC13783_TS_NAME, | 249 | .name = MC13783_TS_NAME, |
diff --git a/drivers/input/touchscreen/mcs5000_ts.c b/drivers/input/touchscreen/mcs5000_ts.c index b528511861ce..94a4ff6de3f9 100644 --- a/drivers/input/touchscreen/mcs5000_ts.c +++ b/drivers/input/touchscreen/mcs5000_ts.c | |||
@@ -292,7 +292,7 @@ MODULE_DEVICE_TABLE(i2c, mcs5000_ts_id); | |||
292 | 292 | ||
293 | static struct i2c_driver mcs5000_ts_driver = { | 293 | static struct i2c_driver mcs5000_ts_driver = { |
294 | .probe = mcs5000_ts_probe, | 294 | .probe = mcs5000_ts_probe, |
295 | .remove = __devexit_p(mcs5000_ts_remove), | 295 | .remove = mcs5000_ts_remove, |
296 | .driver = { | 296 | .driver = { |
297 | .name = "mcs5000_ts", | 297 | .name = "mcs5000_ts", |
298 | #ifdef CONFIG_PM | 298 | #ifdef CONFIG_PM |
diff --git a/drivers/input/touchscreen/mms114.c b/drivers/input/touchscreen/mms114.c index 3426d2e11a36..f4c1bc8a5a8d 100644 --- a/drivers/input/touchscreen/mms114.c +++ b/drivers/input/touchscreen/mms114.c | |||
@@ -590,7 +590,7 @@ static struct i2c_driver mms114_driver = { | |||
590 | .of_match_table = of_match_ptr(mms114_dt_match), | 590 | .of_match_table = of_match_ptr(mms114_dt_match), |
591 | }, | 591 | }, |
592 | .probe = mms114_probe, | 592 | .probe = mms114_probe, |
593 | .remove = __devexit_p(mms114_remove), | 593 | .remove = mms114_remove, |
594 | .id_table = mms114_id, | 594 | .id_table = mms114_id, |
595 | }; | 595 | }; |
596 | 596 | ||
diff --git a/drivers/input/touchscreen/pcap_ts.c b/drivers/input/touchscreen/pcap_ts.c index f57aeb80f7e3..97f07baa6e8f 100644 --- a/drivers/input/touchscreen/pcap_ts.c +++ b/drivers/input/touchscreen/pcap_ts.c | |||
@@ -245,7 +245,7 @@ static const struct dev_pm_ops pcap_ts_pm_ops = { | |||
245 | 245 | ||
246 | static struct platform_driver pcap_ts_driver = { | 246 | static struct platform_driver pcap_ts_driver = { |
247 | .probe = pcap_ts_probe, | 247 | .probe = pcap_ts_probe, |
248 | .remove = __devexit_p(pcap_ts_remove), | 248 | .remove = pcap_ts_remove, |
249 | .driver = { | 249 | .driver = { |
250 | .name = "pcap-ts", | 250 | .name = "pcap-ts", |
251 | .owner = THIS_MODULE, | 251 | .owner = THIS_MODULE, |
diff --git a/drivers/input/touchscreen/pixcir_i2c_ts.c b/drivers/input/touchscreen/pixcir_i2c_ts.c index 953b4c105cad..4fcb63e4337b 100644 --- a/drivers/input/touchscreen/pixcir_i2c_ts.c +++ b/drivers/input/touchscreen/pixcir_i2c_ts.c | |||
@@ -218,7 +218,7 @@ static struct i2c_driver pixcir_i2c_ts_driver = { | |||
218 | .pm = &pixcir_dev_pm_ops, | 218 | .pm = &pixcir_dev_pm_ops, |
219 | }, | 219 | }, |
220 | .probe = pixcir_i2c_ts_probe, | 220 | .probe = pixcir_i2c_ts_probe, |
221 | .remove = __devexit_p(pixcir_i2c_ts_remove), | 221 | .remove = pixcir_i2c_ts_remove, |
222 | .id_table = pixcir_i2c_ts_id, | 222 | .id_table = pixcir_i2c_ts_id, |
223 | }; | 223 | }; |
224 | 224 | ||
diff --git a/drivers/input/touchscreen/s3c2410_ts.c b/drivers/input/touchscreen/s3c2410_ts.c index 549fa29548f8..4dda7656e077 100644 --- a/drivers/input/touchscreen/s3c2410_ts.c +++ b/drivers/input/touchscreen/s3c2410_ts.c | |||
@@ -430,7 +430,7 @@ static struct platform_driver s3c_ts_driver = { | |||
430 | }, | 430 | }, |
431 | .id_table = s3cts_driver_ids, | 431 | .id_table = s3cts_driver_ids, |
432 | .probe = s3c2410ts_probe, | 432 | .probe = s3c2410ts_probe, |
433 | .remove = __devexit_p(s3c2410ts_remove), | 433 | .remove = s3c2410ts_remove, |
434 | }; | 434 | }; |
435 | module_platform_driver(s3c_ts_driver); | 435 | module_platform_driver(s3c_ts_driver); |
436 | 436 | ||
diff --git a/drivers/input/touchscreen/st1232.c b/drivers/input/touchscreen/st1232.c index 6cb68a1981bf..62a4b5d71643 100644 --- a/drivers/input/touchscreen/st1232.c +++ b/drivers/input/touchscreen/st1232.c | |||
@@ -264,7 +264,7 @@ MODULE_DEVICE_TABLE(of, st1232_ts_dt_ids); | |||
264 | 264 | ||
265 | static struct i2c_driver st1232_ts_driver = { | 265 | static struct i2c_driver st1232_ts_driver = { |
266 | .probe = st1232_ts_probe, | 266 | .probe = st1232_ts_probe, |
267 | .remove = __devexit_p(st1232_ts_remove), | 267 | .remove = st1232_ts_remove, |
268 | .id_table = st1232_ts_id, | 268 | .id_table = st1232_ts_id, |
269 | .driver = { | 269 | .driver = { |
270 | .name = ST1232_TS_NAME, | 270 | .name = ST1232_TS_NAME, |
diff --git a/drivers/input/touchscreen/stmpe-ts.c b/drivers/input/touchscreen/stmpe-ts.c index 43e796747f4b..f4897545ec6c 100644 --- a/drivers/input/touchscreen/stmpe-ts.c +++ b/drivers/input/touchscreen/stmpe-ts.c | |||
@@ -386,7 +386,7 @@ static struct platform_driver stmpe_ts_driver = { | |||
386 | .owner = THIS_MODULE, | 386 | .owner = THIS_MODULE, |
387 | }, | 387 | }, |
388 | .probe = stmpe_input_probe, | 388 | .probe = stmpe_input_probe, |
389 | .remove = __devexit_p(stmpe_ts_remove), | 389 | .remove = stmpe_ts_remove, |
390 | }; | 390 | }; |
391 | module_platform_driver(stmpe_ts_driver); | 391 | module_platform_driver(stmpe_ts_driver); |
392 | 392 | ||
diff --git a/drivers/input/touchscreen/tnetv107x-ts.c b/drivers/input/touchscreen/tnetv107x-ts.c index 368d2c6cf780..62d57e8d49fe 100644 --- a/drivers/input/touchscreen/tnetv107x-ts.c +++ b/drivers/input/touchscreen/tnetv107x-ts.c | |||
@@ -374,7 +374,7 @@ static int __devexit tsc_remove(struct platform_device *pdev) | |||
374 | 374 | ||
375 | static struct platform_driver tsc_driver = { | 375 | static struct platform_driver tsc_driver = { |
376 | .probe = tsc_probe, | 376 | .probe = tsc_probe, |
377 | .remove = __devexit_p(tsc_remove), | 377 | .remove = tsc_remove, |
378 | .driver.name = "tnetv107x-ts", | 378 | .driver.name = "tnetv107x-ts", |
379 | .driver.owner = THIS_MODULE, | 379 | .driver.owner = THIS_MODULE, |
380 | }; | 380 | }; |
diff --git a/drivers/input/touchscreen/tps6507x-ts.c b/drivers/input/touchscreen/tps6507x-ts.c index f7eda3d00fad..e1ec9e074ed3 100644 --- a/drivers/input/touchscreen/tps6507x-ts.c +++ b/drivers/input/touchscreen/tps6507x-ts.c | |||
@@ -367,7 +367,7 @@ static struct platform_driver tps6507x_ts_driver = { | |||
367 | .owner = THIS_MODULE, | 367 | .owner = THIS_MODULE, |
368 | }, | 368 | }, |
369 | .probe = tps6507x_ts_probe, | 369 | .probe = tps6507x_ts_probe, |
370 | .remove = __devexit_p(tps6507x_ts_remove), | 370 | .remove = tps6507x_ts_remove, |
371 | }; | 371 | }; |
372 | module_platform_driver(tps6507x_ts_driver); | 372 | module_platform_driver(tps6507x_ts_driver); |
373 | 373 | ||
diff --git a/drivers/input/touchscreen/tsc2005.c b/drivers/input/touchscreen/tsc2005.c index 5ce3fa8ce646..db472a80bcb2 100644 --- a/drivers/input/touchscreen/tsc2005.c +++ b/drivers/input/touchscreen/tsc2005.c | |||
@@ -745,7 +745,7 @@ static struct spi_driver tsc2005_driver = { | |||
745 | .pm = &tsc2005_pm_ops, | 745 | .pm = &tsc2005_pm_ops, |
746 | }, | 746 | }, |
747 | .probe = tsc2005_probe, | 747 | .probe = tsc2005_probe, |
748 | .remove = __devexit_p(tsc2005_remove), | 748 | .remove = tsc2005_remove, |
749 | }; | 749 | }; |
750 | 750 | ||
751 | module_spi_driver(tsc2005_driver); | 751 | module_spi_driver(tsc2005_driver); |
diff --git a/drivers/input/touchscreen/tsc2007.c b/drivers/input/touchscreen/tsc2007.c index 1473d2382afd..3b195835cb03 100644 --- a/drivers/input/touchscreen/tsc2007.c +++ b/drivers/input/touchscreen/tsc2007.c | |||
@@ -396,7 +396,7 @@ static struct i2c_driver tsc2007_driver = { | |||
396 | }, | 396 | }, |
397 | .id_table = tsc2007_idtable, | 397 | .id_table = tsc2007_idtable, |
398 | .probe = tsc2007_probe, | 398 | .probe = tsc2007_probe, |
399 | .remove = __devexit_p(tsc2007_remove), | 399 | .remove = tsc2007_remove, |
400 | }; | 400 | }; |
401 | 401 | ||
402 | module_i2c_driver(tsc2007_driver); | 402 | module_i2c_driver(tsc2007_driver); |
diff --git a/drivers/input/touchscreen/ucb1400_ts.c b/drivers/input/touchscreen/ucb1400_ts.c index 46e83ad53f43..780eda612547 100644 --- a/drivers/input/touchscreen/ucb1400_ts.c +++ b/drivers/input/touchscreen/ucb1400_ts.c | |||
@@ -442,7 +442,7 @@ static SIMPLE_DEV_PM_OPS(ucb1400_ts_pm_ops, | |||
442 | 442 | ||
443 | static struct platform_driver ucb1400_ts_driver = { | 443 | static struct platform_driver ucb1400_ts_driver = { |
444 | .probe = ucb1400_ts_probe, | 444 | .probe = ucb1400_ts_probe, |
445 | .remove = __devexit_p(ucb1400_ts_remove), | 445 | .remove = ucb1400_ts_remove, |
446 | .driver = { | 446 | .driver = { |
447 | .name = "ucb1400_ts", | 447 | .name = "ucb1400_ts", |
448 | .owner = THIS_MODULE, | 448 | .owner = THIS_MODULE, |
diff --git a/drivers/input/touchscreen/w90p910_ts.c b/drivers/input/touchscreen/w90p910_ts.c index 9396b21d0e8f..039e4eadb6ac 100644 --- a/drivers/input/touchscreen/w90p910_ts.c +++ b/drivers/input/touchscreen/w90p910_ts.c | |||
@@ -325,7 +325,7 @@ static int __devexit w90x900ts_remove(struct platform_device *pdev) | |||
325 | 325 | ||
326 | static struct platform_driver w90x900ts_driver = { | 326 | static struct platform_driver w90x900ts_driver = { |
327 | .probe = w90x900ts_probe, | 327 | .probe = w90x900ts_probe, |
328 | .remove = __devexit_p(w90x900ts_remove), | 328 | .remove = w90x900ts_remove, |
329 | .driver = { | 329 | .driver = { |
330 | .name = "nuc900-ts", | 330 | .name = "nuc900-ts", |
331 | .owner = THIS_MODULE, | 331 | .owner = THIS_MODULE, |
diff --git a/drivers/input/touchscreen/wacom_i2c.c b/drivers/input/touchscreen/wacom_i2c.c index 0c01657132fd..0c033dfbd73e 100644 --- a/drivers/input/touchscreen/wacom_i2c.c +++ b/drivers/input/touchscreen/wacom_i2c.c | |||
@@ -272,7 +272,7 @@ static struct i2c_driver wacom_i2c_driver = { | |||
272 | }, | 272 | }, |
273 | 273 | ||
274 | .probe = wacom_i2c_probe, | 274 | .probe = wacom_i2c_probe, |
275 | .remove = __devexit_p(wacom_i2c_remove), | 275 | .remove = wacom_i2c_remove, |
276 | .id_table = wacom_i2c_id, | 276 | .id_table = wacom_i2c_id, |
277 | }; | 277 | }; |
278 | module_i2c_driver(wacom_i2c_driver); | 278 | module_i2c_driver(wacom_i2c_driver); |
diff --git a/drivers/input/touchscreen/wm831x-ts.c b/drivers/input/touchscreen/wm831x-ts.c index c7eee56d0087..17f14b69438a 100644 --- a/drivers/input/touchscreen/wm831x-ts.c +++ b/drivers/input/touchscreen/wm831x-ts.c | |||
@@ -398,7 +398,7 @@ static struct platform_driver wm831x_ts_driver = { | |||
398 | .owner = THIS_MODULE, | 398 | .owner = THIS_MODULE, |
399 | }, | 399 | }, |
400 | .probe = wm831x_ts_probe, | 400 | .probe = wm831x_ts_probe, |
401 | .remove = __devexit_p(wm831x_ts_remove), | 401 | .remove = wm831x_ts_remove, |
402 | }; | 402 | }; |
403 | module_platform_driver(wm831x_ts_driver); | 403 | module_platform_driver(wm831x_ts_driver); |
404 | 404 | ||