diff options
author | Bill Pemberton <wfp5p@virginia.edu> | 2012-11-19 13:21:09 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-11-28 15:03:45 -0500 |
commit | d1723fa266aff677571cad0bac7203ed2e424823 (patch) | |
tree | 1df096b803dbd48b58b81235262b6e51c5233072 /drivers | |
parent | 4b12b896c27c3b54592816606679f5b02f638930 (diff) |
backlight: remove use of __devexit_p
CONFIG_HOTPLUG is going away as an option so __devexit_p is no longer
needed.
Signed-off-by: Bill Pemberton <wfp5p@virginia.edu>
Cc: Richard Purdie <rpurdie@rpsys.net>
Cc: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Acked-by: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers')
22 files changed, 22 insertions, 22 deletions
diff --git a/drivers/video/backlight/adp5520_bl.c b/drivers/video/backlight/adp5520_bl.c index df5db99af23d..e2a0da342de1 100644 --- a/drivers/video/backlight/adp5520_bl.c +++ b/drivers/video/backlight/adp5520_bl.c | |||
@@ -375,7 +375,7 @@ static struct platform_driver adp5520_bl_driver = { | |||
375 | .owner = THIS_MODULE, | 375 | .owner = THIS_MODULE, |
376 | }, | 376 | }, |
377 | .probe = adp5520_bl_probe, | 377 | .probe = adp5520_bl_probe, |
378 | .remove = __devexit_p(adp5520_bl_remove), | 378 | .remove = adp5520_bl_remove, |
379 | .suspend = adp5520_bl_suspend, | 379 | .suspend = adp5520_bl_suspend, |
380 | .resume = adp5520_bl_resume, | 380 | .resume = adp5520_bl_resume, |
381 | }; | 381 | }; |
diff --git a/drivers/video/backlight/adp8860_bl.c b/drivers/video/backlight/adp8860_bl.c index 77d1fdba597f..953c5212efef 100644 --- a/drivers/video/backlight/adp8860_bl.c +++ b/drivers/video/backlight/adp8860_bl.c | |||
@@ -805,7 +805,7 @@ static struct i2c_driver adp8860_driver = { | |||
805 | .name = KBUILD_MODNAME, | 805 | .name = KBUILD_MODNAME, |
806 | }, | 806 | }, |
807 | .probe = adp8860_probe, | 807 | .probe = adp8860_probe, |
808 | .remove = __devexit_p(adp8860_remove), | 808 | .remove = adp8860_remove, |
809 | .suspend = adp8860_i2c_suspend, | 809 | .suspend = adp8860_i2c_suspend, |
810 | .resume = adp8860_i2c_resume, | 810 | .resume = adp8860_i2c_resume, |
811 | .id_table = adp8860_id, | 811 | .id_table = adp8860_id, |
diff --git a/drivers/video/backlight/adp8870_bl.c b/drivers/video/backlight/adp8870_bl.c index edf7f91c8e61..558772b91795 100644 --- a/drivers/video/backlight/adp8870_bl.c +++ b/drivers/video/backlight/adp8870_bl.c | |||
@@ -977,7 +977,7 @@ static struct i2c_driver adp8870_driver = { | |||
977 | .name = KBUILD_MODNAME, | 977 | .name = KBUILD_MODNAME, |
978 | }, | 978 | }, |
979 | .probe = adp8870_probe, | 979 | .probe = adp8870_probe, |
980 | .remove = __devexit_p(adp8870_remove), | 980 | .remove = adp8870_remove, |
981 | .suspend = adp8870_i2c_suspend, | 981 | .suspend = adp8870_i2c_suspend, |
982 | .resume = adp8870_i2c_resume, | 982 | .resume = adp8870_i2c_resume, |
983 | .id_table = adp8870_id, | 983 | .id_table = adp8870_id, |
diff --git a/drivers/video/backlight/ams369fg06.c b/drivers/video/backlight/ams369fg06.c index 3729238e7096..e48f4b1473ab 100644 --- a/drivers/video/backlight/ams369fg06.c +++ b/drivers/video/backlight/ams369fg06.c | |||
@@ -617,7 +617,7 @@ static struct spi_driver ams369fg06_driver = { | |||
617 | .owner = THIS_MODULE, | 617 | .owner = THIS_MODULE, |
618 | }, | 618 | }, |
619 | .probe = ams369fg06_probe, | 619 | .probe = ams369fg06_probe, |
620 | .remove = __devexit_p(ams369fg06_remove), | 620 | .remove = ams369fg06_remove, |
621 | .shutdown = ams369fg06_shutdown, | 621 | .shutdown = ams369fg06_shutdown, |
622 | .suspend = ams369fg06_suspend, | 622 | .suspend = ams369fg06_suspend, |
623 | .resume = ams369fg06_resume, | 623 | .resume = ams369fg06_resume, |
diff --git a/drivers/video/backlight/corgi_lcd.c b/drivers/video/backlight/corgi_lcd.c index c781768ba892..8617284f87bb 100644 --- a/drivers/video/backlight/corgi_lcd.c +++ b/drivers/video/backlight/corgi_lcd.c | |||
@@ -611,7 +611,7 @@ static struct spi_driver corgi_lcd_driver = { | |||
611 | .owner = THIS_MODULE, | 611 | .owner = THIS_MODULE, |
612 | }, | 612 | }, |
613 | .probe = corgi_lcd_probe, | 613 | .probe = corgi_lcd_probe, |
614 | .remove = __devexit_p(corgi_lcd_remove), | 614 | .remove = corgi_lcd_remove, |
615 | .suspend = corgi_lcd_suspend, | 615 | .suspend = corgi_lcd_suspend, |
616 | .resume = corgi_lcd_resume, | 616 | .resume = corgi_lcd_resume, |
617 | }; | 617 | }; |
diff --git a/drivers/video/backlight/ep93xx_bl.c b/drivers/video/backlight/ep93xx_bl.c index 08214e1f0958..ef3e21e8f825 100644 --- a/drivers/video/backlight/ep93xx_bl.c +++ b/drivers/video/backlight/ep93xx_bl.c | |||
@@ -141,7 +141,7 @@ static struct platform_driver ep93xxbl_driver = { | |||
141 | .owner = THIS_MODULE, | 141 | .owner = THIS_MODULE, |
142 | }, | 142 | }, |
143 | .probe = ep93xxbl_probe, | 143 | .probe = ep93xxbl_probe, |
144 | .remove = __devexit_p(ep93xxbl_remove), | 144 | .remove = ep93xxbl_remove, |
145 | .suspend = ep93xxbl_suspend, | 145 | .suspend = ep93xxbl_suspend, |
146 | .resume = ep93xxbl_resume, | 146 | .resume = ep93xxbl_resume, |
147 | }; | 147 | }; |
diff --git a/drivers/video/backlight/l4f00242t03.c b/drivers/video/backlight/l4f00242t03.c index 2d90c0648aa0..157a4c69ef94 100644 --- a/drivers/video/backlight/l4f00242t03.c +++ b/drivers/video/backlight/l4f00242t03.c | |||
@@ -260,7 +260,7 @@ static struct spi_driver l4f00242t03_driver = { | |||
260 | .owner = THIS_MODULE, | 260 | .owner = THIS_MODULE, |
261 | }, | 261 | }, |
262 | .probe = l4f00242t03_probe, | 262 | .probe = l4f00242t03_probe, |
263 | .remove = __devexit_p(l4f00242t03_remove), | 263 | .remove = l4f00242t03_remove, |
264 | .shutdown = l4f00242t03_shutdown, | 264 | .shutdown = l4f00242t03_shutdown, |
265 | }; | 265 | }; |
266 | 266 | ||
diff --git a/drivers/video/backlight/ld9040.c b/drivers/video/backlight/ld9040.c index 58f517fb7d40..77ba103f6e5e 100644 --- a/drivers/video/backlight/ld9040.c +++ b/drivers/video/backlight/ld9040.c | |||
@@ -847,7 +847,7 @@ static struct spi_driver ld9040_driver = { | |||
847 | .owner = THIS_MODULE, | 847 | .owner = THIS_MODULE, |
848 | }, | 848 | }, |
849 | .probe = ld9040_probe, | 849 | .probe = ld9040_probe, |
850 | .remove = __devexit_p(ld9040_remove), | 850 | .remove = ld9040_remove, |
851 | .shutdown = ld9040_shutdown, | 851 | .shutdown = ld9040_shutdown, |
852 | .suspend = ld9040_suspend, | 852 | .suspend = ld9040_suspend, |
853 | .resume = ld9040_resume, | 853 | .resume = ld9040_resume, |
diff --git a/drivers/video/backlight/lm3533_bl.c b/drivers/video/backlight/lm3533_bl.c index 18dca0c29c68..c9a0b5118c8a 100644 --- a/drivers/video/backlight/lm3533_bl.c +++ b/drivers/video/backlight/lm3533_bl.c | |||
@@ -406,7 +406,7 @@ static struct platform_driver lm3533_bl_driver = { | |||
406 | .owner = THIS_MODULE, | 406 | .owner = THIS_MODULE, |
407 | }, | 407 | }, |
408 | .probe = lm3533_bl_probe, | 408 | .probe = lm3533_bl_probe, |
409 | .remove = __devexit_p(lm3533_bl_remove), | 409 | .remove = lm3533_bl_remove, |
410 | .shutdown = lm3533_bl_shutdown, | 410 | .shutdown = lm3533_bl_shutdown, |
411 | .suspend = lm3533_bl_suspend, | 411 | .suspend = lm3533_bl_suspend, |
412 | .resume = lm3533_bl_resume, | 412 | .resume = lm3533_bl_resume, |
diff --git a/drivers/video/backlight/lm3630_bl.c b/drivers/video/backlight/lm3630_bl.c index dc191441796f..d407855fbcc5 100644 --- a/drivers/video/backlight/lm3630_bl.c +++ b/drivers/video/backlight/lm3630_bl.c | |||
@@ -463,7 +463,7 @@ static struct i2c_driver lm3630_i2c_driver = { | |||
463 | .name = LM3630_NAME, | 463 | .name = LM3630_NAME, |
464 | }, | 464 | }, |
465 | .probe = lm3630_probe, | 465 | .probe = lm3630_probe, |
466 | .remove = __devexit_p(lm3630_remove), | 466 | .remove = lm3630_remove, |
467 | .id_table = lm3630_id, | 467 | .id_table = lm3630_id, |
468 | }; | 468 | }; |
469 | 469 | ||
diff --git a/drivers/video/backlight/lm3639_bl.c b/drivers/video/backlight/lm3639_bl.c index 585949b57055..1bc53736ceab 100644 --- a/drivers/video/backlight/lm3639_bl.c +++ b/drivers/video/backlight/lm3639_bl.c | |||
@@ -425,7 +425,7 @@ static struct i2c_driver lm3639_i2c_driver = { | |||
425 | .name = LM3639_NAME, | 425 | .name = LM3639_NAME, |
426 | }, | 426 | }, |
427 | .probe = lm3639_probe, | 427 | .probe = lm3639_probe, |
428 | .remove = __devexit_p(lm3639_remove), | 428 | .remove = lm3639_remove, |
429 | .id_table = lm3639_id, | 429 | .id_table = lm3639_id, |
430 | }; | 430 | }; |
431 | 431 | ||
diff --git a/drivers/video/backlight/lms283gf05.c b/drivers/video/backlight/lms283gf05.c index ea43f2254196..bfb4f370dcd9 100644 --- a/drivers/video/backlight/lms283gf05.c +++ b/drivers/video/backlight/lms283gf05.c | |||
@@ -208,7 +208,7 @@ static struct spi_driver lms283gf05_driver = { | |||
208 | .owner = THIS_MODULE, | 208 | .owner = THIS_MODULE, |
209 | }, | 209 | }, |
210 | .probe = lms283gf05_probe, | 210 | .probe = lms283gf05_probe, |
211 | .remove = __devexit_p(lms283gf05_remove), | 211 | .remove = lms283gf05_remove, |
212 | }; | 212 | }; |
213 | 213 | ||
214 | module_spi_driver(lms283gf05_driver); | 214 | module_spi_driver(lms283gf05_driver); |
diff --git a/drivers/video/backlight/lp855x_bl.c b/drivers/video/backlight/lp855x_bl.c index aa6d4f71131f..b41c10f6e4f2 100644 --- a/drivers/video/backlight/lp855x_bl.c +++ b/drivers/video/backlight/lp855x_bl.c | |||
@@ -324,7 +324,7 @@ static struct i2c_driver lp855x_driver = { | |||
324 | .name = "lp855x", | 324 | .name = "lp855x", |
325 | }, | 325 | }, |
326 | .probe = lp855x_probe, | 326 | .probe = lp855x_probe, |
327 | .remove = __devexit_p(lp855x_remove), | 327 | .remove = lp855x_remove, |
328 | .id_table = lp855x_ids, | 328 | .id_table = lp855x_ids, |
329 | }; | 329 | }; |
330 | 330 | ||
diff --git a/drivers/video/backlight/ltv350qv.c b/drivers/video/backlight/ltv350qv.c index 4066a5bbd826..c63ce6e75021 100644 --- a/drivers/video/backlight/ltv350qv.c +++ b/drivers/video/backlight/ltv350qv.c | |||
@@ -305,7 +305,7 @@ static struct spi_driver ltv350qv_driver = { | |||
305 | }, | 305 | }, |
306 | 306 | ||
307 | .probe = ltv350qv_probe, | 307 | .probe = ltv350qv_probe, |
308 | .remove = __devexit_p(ltv350qv_remove), | 308 | .remove = ltv350qv_remove, |
309 | .shutdown = ltv350qv_shutdown, | 309 | .shutdown = ltv350qv_shutdown, |
310 | .suspend = ltv350qv_suspend, | 310 | .suspend = ltv350qv_suspend, |
311 | .resume = ltv350qv_resume, | 311 | .resume = ltv350qv_resume, |
diff --git a/drivers/video/backlight/max8925_bl.c b/drivers/video/backlight/max8925_bl.c index f72ba54f364e..3882b2761f78 100644 --- a/drivers/video/backlight/max8925_bl.c +++ b/drivers/video/backlight/max8925_bl.c | |||
@@ -185,7 +185,7 @@ static struct platform_driver max8925_backlight_driver = { | |||
185 | .owner = THIS_MODULE, | 185 | .owner = THIS_MODULE, |
186 | }, | 186 | }, |
187 | .probe = max8925_backlight_probe, | 187 | .probe = max8925_backlight_probe, |
188 | .remove = __devexit_p(max8925_backlight_remove), | 188 | .remove = max8925_backlight_remove, |
189 | }; | 189 | }; |
190 | 190 | ||
191 | module_platform_driver(max8925_backlight_driver); | 191 | module_platform_driver(max8925_backlight_driver); |
diff --git a/drivers/video/backlight/pcf50633-backlight.c b/drivers/video/backlight/pcf50633-backlight.c index c092159f4383..e654b5c4a3bb 100644 --- a/drivers/video/backlight/pcf50633-backlight.c +++ b/drivers/video/backlight/pcf50633-backlight.c | |||
@@ -158,7 +158,7 @@ static int __devexit pcf50633_bl_remove(struct platform_device *pdev) | |||
158 | 158 | ||
159 | static struct platform_driver pcf50633_bl_driver = { | 159 | static struct platform_driver pcf50633_bl_driver = { |
160 | .probe = pcf50633_bl_probe, | 160 | .probe = pcf50633_bl_probe, |
161 | .remove = __devexit_p(pcf50633_bl_remove), | 161 | .remove = pcf50633_bl_remove, |
162 | .driver = { | 162 | .driver = { |
163 | .name = "pcf50633-backlight", | 163 | .name = "pcf50633-backlight", |
164 | }, | 164 | }, |
diff --git a/drivers/video/backlight/platform_lcd.c b/drivers/video/backlight/platform_lcd.c index ca4f5d70fe10..54e72841982e 100644 --- a/drivers/video/backlight/platform_lcd.c +++ b/drivers/video/backlight/platform_lcd.c | |||
@@ -164,7 +164,7 @@ static struct platform_driver platform_lcd_driver = { | |||
164 | .of_match_table = of_match_ptr(platform_lcd_of_match), | 164 | .of_match_table = of_match_ptr(platform_lcd_of_match), |
165 | }, | 165 | }, |
166 | .probe = platform_lcd_probe, | 166 | .probe = platform_lcd_probe, |
167 | .remove = __devexit_p(platform_lcd_remove), | 167 | .remove = platform_lcd_remove, |
168 | }; | 168 | }; |
169 | 169 | ||
170 | module_platform_driver(platform_lcd_driver); | 170 | module_platform_driver(platform_lcd_driver); |
diff --git a/drivers/video/backlight/s6e63m0.c b/drivers/video/backlight/s6e63m0.c index 6437ae474cf2..1438b993a9ef 100644 --- a/drivers/video/backlight/s6e63m0.c +++ b/drivers/video/backlight/s6e63m0.c | |||
@@ -897,7 +897,7 @@ static struct spi_driver s6e63m0_driver = { | |||
897 | .owner = THIS_MODULE, | 897 | .owner = THIS_MODULE, |
898 | }, | 898 | }, |
899 | .probe = s6e63m0_probe, | 899 | .probe = s6e63m0_probe, |
900 | .remove = __devexit_p(s6e63m0_remove), | 900 | .remove = s6e63m0_remove, |
901 | .shutdown = s6e63m0_shutdown, | 901 | .shutdown = s6e63m0_shutdown, |
902 | .suspend = s6e63m0_suspend, | 902 | .suspend = s6e63m0_suspend, |
903 | .resume = s6e63m0_resume, | 903 | .resume = s6e63m0_resume, |
diff --git a/drivers/video/backlight/tdo24m.c b/drivers/video/backlight/tdo24m.c index 02444d042cd5..076f4f6d3335 100644 --- a/drivers/video/backlight/tdo24m.c +++ b/drivers/video/backlight/tdo24m.c | |||
@@ -444,7 +444,7 @@ static struct spi_driver tdo24m_driver = { | |||
444 | .owner = THIS_MODULE, | 444 | .owner = THIS_MODULE, |
445 | }, | 445 | }, |
446 | .probe = tdo24m_probe, | 446 | .probe = tdo24m_probe, |
447 | .remove = __devexit_p(tdo24m_remove), | 447 | .remove = tdo24m_remove, |
448 | .shutdown = tdo24m_shutdown, | 448 | .shutdown = tdo24m_shutdown, |
449 | .suspend = tdo24m_suspend, | 449 | .suspend = tdo24m_suspend, |
450 | .resume = tdo24m_resume, | 450 | .resume = tdo24m_resume, |
diff --git a/drivers/video/backlight/tosa_bl.c b/drivers/video/backlight/tosa_bl.c index 49342e1d20be..8a82cc91a17f 100644 --- a/drivers/video/backlight/tosa_bl.c +++ b/drivers/video/backlight/tosa_bl.c | |||
@@ -170,7 +170,7 @@ static struct i2c_driver tosa_bl_driver = { | |||
170 | .owner = THIS_MODULE, | 170 | .owner = THIS_MODULE, |
171 | }, | 171 | }, |
172 | .probe = tosa_bl_probe, | 172 | .probe = tosa_bl_probe, |
173 | .remove = __devexit_p(tosa_bl_remove), | 173 | .remove = tosa_bl_remove, |
174 | .suspend = tosa_bl_suspend, | 174 | .suspend = tosa_bl_suspend, |
175 | .resume = tosa_bl_resume, | 175 | .resume = tosa_bl_resume, |
176 | .id_table = tosa_bl_id, | 176 | .id_table = tosa_bl_id, |
diff --git a/drivers/video/backlight/tosa_lcd.c b/drivers/video/backlight/tosa_lcd.c index 33047a66cc24..bf64092509b8 100644 --- a/drivers/video/backlight/tosa_lcd.c +++ b/drivers/video/backlight/tosa_lcd.c | |||
@@ -275,7 +275,7 @@ static struct spi_driver tosa_lcd_driver = { | |||
275 | .owner = THIS_MODULE, | 275 | .owner = THIS_MODULE, |
276 | }, | 276 | }, |
277 | .probe = tosa_lcd_probe, | 277 | .probe = tosa_lcd_probe, |
278 | .remove = __devexit_p(tosa_lcd_remove), | 278 | .remove = tosa_lcd_remove, |
279 | .suspend = tosa_lcd_suspend, | 279 | .suspend = tosa_lcd_suspend, |
280 | .resume = tosa_lcd_resume, | 280 | .resume = tosa_lcd_resume, |
281 | }; | 281 | }; |
diff --git a/drivers/video/backlight/vgg2432a4.c b/drivers/video/backlight/vgg2432a4.c index b617fae9aa26..f821ab8106fc 100644 --- a/drivers/video/backlight/vgg2432a4.c +++ b/drivers/video/backlight/vgg2432a4.c | |||
@@ -256,7 +256,7 @@ static struct spi_driver vgg2432a4_driver = { | |||
256 | .owner = THIS_MODULE, | 256 | .owner = THIS_MODULE, |
257 | }, | 257 | }, |
258 | .probe = vgg2432a4_probe, | 258 | .probe = vgg2432a4_probe, |
259 | .remove = __devexit_p(vgg2432a4_remove), | 259 | .remove = vgg2432a4_remove, |
260 | .shutdown = vgg2432a4_shutdown, | 260 | .shutdown = vgg2432a4_shutdown, |
261 | .suspend = vgg2432a4_suspend, | 261 | .suspend = vgg2432a4_suspend, |
262 | .resume = vgg2432a4_resume, | 262 | .resume = vgg2432a4_resume, |