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>
This commit is contained in:
Bill Pemberton
2012-11-19 13:21:09 -05:00
committed by Greg Kroah-Hartman
parent 4b12b896c2
commit d1723fa266
22 changed files with 22 additions and 22 deletions
+1 -1
View File
@@ -375,7 +375,7 @@ static struct platform_driver adp5520_bl_driver = {
.owner = THIS_MODULE, .owner = THIS_MODULE,
}, },
.probe = adp5520_bl_probe, .probe = adp5520_bl_probe,
.remove = __devexit_p(adp5520_bl_remove), .remove = adp5520_bl_remove,
.suspend = adp5520_bl_suspend, .suspend = adp5520_bl_suspend,
.resume = adp5520_bl_resume, .resume = adp5520_bl_resume,
}; };
+1 -1
View File
@@ -805,7 +805,7 @@ static struct i2c_driver adp8860_driver = {
.name = KBUILD_MODNAME, .name = KBUILD_MODNAME,
}, },
.probe = adp8860_probe, .probe = adp8860_probe,
.remove = __devexit_p(adp8860_remove), .remove = adp8860_remove,
.suspend = adp8860_i2c_suspend, .suspend = adp8860_i2c_suspend,
.resume = adp8860_i2c_resume, .resume = adp8860_i2c_resume,
.id_table = adp8860_id, .id_table = adp8860_id,
+1 -1
View File
@@ -977,7 +977,7 @@ static struct i2c_driver adp8870_driver = {
.name = KBUILD_MODNAME, .name = KBUILD_MODNAME,
}, },
.probe = adp8870_probe, .probe = adp8870_probe,
.remove = __devexit_p(adp8870_remove), .remove = adp8870_remove,
.suspend = adp8870_i2c_suspend, .suspend = adp8870_i2c_suspend,
.resume = adp8870_i2c_resume, .resume = adp8870_i2c_resume,
.id_table = adp8870_id, .id_table = adp8870_id,
+1 -1
View File
@@ -617,7 +617,7 @@ static struct spi_driver ams369fg06_driver = {
.owner = THIS_MODULE, .owner = THIS_MODULE,
}, },
.probe = ams369fg06_probe, .probe = ams369fg06_probe,
.remove = __devexit_p(ams369fg06_remove), .remove = ams369fg06_remove,
.shutdown = ams369fg06_shutdown, .shutdown = ams369fg06_shutdown,
.suspend = ams369fg06_suspend, .suspend = ams369fg06_suspend,
.resume = ams369fg06_resume, .resume = ams369fg06_resume,
+1 -1
View File
@@ -611,7 +611,7 @@ static struct spi_driver corgi_lcd_driver = {
.owner = THIS_MODULE, .owner = THIS_MODULE,
}, },
.probe = corgi_lcd_probe, .probe = corgi_lcd_probe,
.remove = __devexit_p(corgi_lcd_remove), .remove = corgi_lcd_remove,
.suspend = corgi_lcd_suspend, .suspend = corgi_lcd_suspend,
.resume = corgi_lcd_resume, .resume = corgi_lcd_resume,
}; };
+1 -1
View File
@@ -141,7 +141,7 @@ static struct platform_driver ep93xxbl_driver = {
.owner = THIS_MODULE, .owner = THIS_MODULE,
}, },
.probe = ep93xxbl_probe, .probe = ep93xxbl_probe,
.remove = __devexit_p(ep93xxbl_remove), .remove = ep93xxbl_remove,
.suspend = ep93xxbl_suspend, .suspend = ep93xxbl_suspend,
.resume = ep93xxbl_resume, .resume = ep93xxbl_resume,
}; };
+1 -1
View File
@@ -260,7 +260,7 @@ static struct spi_driver l4f00242t03_driver = {
.owner = THIS_MODULE, .owner = THIS_MODULE,
}, },
.probe = l4f00242t03_probe, .probe = l4f00242t03_probe,
.remove = __devexit_p(l4f00242t03_remove), .remove = l4f00242t03_remove,
.shutdown = l4f00242t03_shutdown, .shutdown = l4f00242t03_shutdown,
}; };
+1 -1
View File
@@ -847,7 +847,7 @@ static struct spi_driver ld9040_driver = {
.owner = THIS_MODULE, .owner = THIS_MODULE,
}, },
.probe = ld9040_probe, .probe = ld9040_probe,
.remove = __devexit_p(ld9040_remove), .remove = ld9040_remove,
.shutdown = ld9040_shutdown, .shutdown = ld9040_shutdown,
.suspend = ld9040_suspend, .suspend = ld9040_suspend,
.resume = ld9040_resume, .resume = ld9040_resume,
+1 -1
View File
@@ -406,7 +406,7 @@ static struct platform_driver lm3533_bl_driver = {
.owner = THIS_MODULE, .owner = THIS_MODULE,
}, },
.probe = lm3533_bl_probe, .probe = lm3533_bl_probe,
.remove = __devexit_p(lm3533_bl_remove), .remove = lm3533_bl_remove,
.shutdown = lm3533_bl_shutdown, .shutdown = lm3533_bl_shutdown,
.suspend = lm3533_bl_suspend, .suspend = lm3533_bl_suspend,
.resume = lm3533_bl_resume, .resume = lm3533_bl_resume,
+1 -1
View File
@@ -463,7 +463,7 @@ static struct i2c_driver lm3630_i2c_driver = {
.name = LM3630_NAME, .name = LM3630_NAME,
}, },
.probe = lm3630_probe, .probe = lm3630_probe,
.remove = __devexit_p(lm3630_remove), .remove = lm3630_remove,
.id_table = lm3630_id, .id_table = lm3630_id,
}; };
+1 -1
View File
@@ -425,7 +425,7 @@ static struct i2c_driver lm3639_i2c_driver = {
.name = LM3639_NAME, .name = LM3639_NAME,
}, },
.probe = lm3639_probe, .probe = lm3639_probe,
.remove = __devexit_p(lm3639_remove), .remove = lm3639_remove,
.id_table = lm3639_id, .id_table = lm3639_id,
}; };
+1 -1
View File
@@ -208,7 +208,7 @@ static struct spi_driver lms283gf05_driver = {
.owner = THIS_MODULE, .owner = THIS_MODULE,
}, },
.probe = lms283gf05_probe, .probe = lms283gf05_probe,
.remove = __devexit_p(lms283gf05_remove), .remove = lms283gf05_remove,
}; };
module_spi_driver(lms283gf05_driver); module_spi_driver(lms283gf05_driver);
+1 -1
View File
@@ -324,7 +324,7 @@ static struct i2c_driver lp855x_driver = {
.name = "lp855x", .name = "lp855x",
}, },
.probe = lp855x_probe, .probe = lp855x_probe,
.remove = __devexit_p(lp855x_remove), .remove = lp855x_remove,
.id_table = lp855x_ids, .id_table = lp855x_ids,
}; };
+1 -1
View File
@@ -305,7 +305,7 @@ static struct spi_driver ltv350qv_driver = {
}, },
.probe = ltv350qv_probe, .probe = ltv350qv_probe,
.remove = __devexit_p(ltv350qv_remove), .remove = ltv350qv_remove,
.shutdown = ltv350qv_shutdown, .shutdown = ltv350qv_shutdown,
.suspend = ltv350qv_suspend, .suspend = ltv350qv_suspend,
.resume = ltv350qv_resume, .resume = ltv350qv_resume,
+1 -1
View File
@@ -185,7 +185,7 @@ static struct platform_driver max8925_backlight_driver = {
.owner = THIS_MODULE, .owner = THIS_MODULE,
}, },
.probe = max8925_backlight_probe, .probe = max8925_backlight_probe,
.remove = __devexit_p(max8925_backlight_remove), .remove = max8925_backlight_remove,
}; };
module_platform_driver(max8925_backlight_driver); module_platform_driver(max8925_backlight_driver);
+1 -1
View File
@@ -158,7 +158,7 @@ static int __devexit pcf50633_bl_remove(struct platform_device *pdev)
static struct platform_driver pcf50633_bl_driver = { static struct platform_driver pcf50633_bl_driver = {
.probe = pcf50633_bl_probe, .probe = pcf50633_bl_probe,
.remove = __devexit_p(pcf50633_bl_remove), .remove = pcf50633_bl_remove,
.driver = { .driver = {
.name = "pcf50633-backlight", .name = "pcf50633-backlight",
}, },
+1 -1
View File
@@ -164,7 +164,7 @@ static struct platform_driver platform_lcd_driver = {
.of_match_table = of_match_ptr(platform_lcd_of_match), .of_match_table = of_match_ptr(platform_lcd_of_match),
}, },
.probe = platform_lcd_probe, .probe = platform_lcd_probe,
.remove = __devexit_p(platform_lcd_remove), .remove = platform_lcd_remove,
}; };
module_platform_driver(platform_lcd_driver); module_platform_driver(platform_lcd_driver);
+1 -1
View File
@@ -897,7 +897,7 @@ static struct spi_driver s6e63m0_driver = {
.owner = THIS_MODULE, .owner = THIS_MODULE,
}, },
.probe = s6e63m0_probe, .probe = s6e63m0_probe,
.remove = __devexit_p(s6e63m0_remove), .remove = s6e63m0_remove,
.shutdown = s6e63m0_shutdown, .shutdown = s6e63m0_shutdown,
.suspend = s6e63m0_suspend, .suspend = s6e63m0_suspend,
.resume = s6e63m0_resume, .resume = s6e63m0_resume,
+1 -1
View File
@@ -444,7 +444,7 @@ static struct spi_driver tdo24m_driver = {
.owner = THIS_MODULE, .owner = THIS_MODULE,
}, },
.probe = tdo24m_probe, .probe = tdo24m_probe,
.remove = __devexit_p(tdo24m_remove), .remove = tdo24m_remove,
.shutdown = tdo24m_shutdown, .shutdown = tdo24m_shutdown,
.suspend = tdo24m_suspend, .suspend = tdo24m_suspend,
.resume = tdo24m_resume, .resume = tdo24m_resume,
+1 -1
View File
@@ -170,7 +170,7 @@ static struct i2c_driver tosa_bl_driver = {
.owner = THIS_MODULE, .owner = THIS_MODULE,
}, },
.probe = tosa_bl_probe, .probe = tosa_bl_probe,
.remove = __devexit_p(tosa_bl_remove), .remove = tosa_bl_remove,
.suspend = tosa_bl_suspend, .suspend = tosa_bl_suspend,
.resume = tosa_bl_resume, .resume = tosa_bl_resume,
.id_table = tosa_bl_id, .id_table = tosa_bl_id,

Some files were not shown because too many files have changed in this diff Show More