Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d1723fa2 authored by Bill Pemberton's avatar Bill Pemberton Committed by Greg Kroah-Hartman
Browse files

backlight: remove use of __devexit_p



CONFIG_HOTPLUG is going away as an option so __devexit_p is no longer
needed.

Signed-off-by: default avatarBill Pemberton <wfp5p@virginia.edu>
Cc: Richard Purdie <rpurdie@rpsys.net>
Cc: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Acked-by: default avatarJingoo Han <jg1.han@samsung.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 4b12b896
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -375,7 +375,7 @@ static struct platform_driver adp5520_bl_driver = {
		.owner	= THIS_MODULE,
	},
	.probe		= adp5520_bl_probe,
	.remove		= __devexit_p(adp5520_bl_remove),
	.remove		= adp5520_bl_remove,
	.suspend	= adp5520_bl_suspend,
	.resume		= adp5520_bl_resume,
};
+1 −1
Original line number Diff line number Diff line
@@ -805,7 +805,7 @@ static struct i2c_driver adp8860_driver = {
		.name = KBUILD_MODNAME,
	},
	.probe    = adp8860_probe,
	.remove   = __devexit_p(adp8860_remove),
	.remove   = adp8860_remove,
	.suspend = adp8860_i2c_suspend,
	.resume  = adp8860_i2c_resume,
	.id_table = adp8860_id,
+1 −1
Original line number Diff line number Diff line
@@ -977,7 +977,7 @@ static struct i2c_driver adp8870_driver = {
		.name = KBUILD_MODNAME,
	},
	.probe    = adp8870_probe,
	.remove   = __devexit_p(adp8870_remove),
	.remove   = adp8870_remove,
	.suspend = adp8870_i2c_suspend,
	.resume  = adp8870_i2c_resume,
	.id_table = adp8870_id,
+1 −1
Original line number Diff line number Diff line
@@ -617,7 +617,7 @@ static struct spi_driver ams369fg06_driver = {
		.owner	= THIS_MODULE,
	},
	.probe		= ams369fg06_probe,
	.remove		= __devexit_p(ams369fg06_remove),
	.remove		= ams369fg06_remove,
	.shutdown	= ams369fg06_shutdown,
	.suspend	= ams369fg06_suspend,
	.resume		= ams369fg06_resume,
+1 −1
Original line number Diff line number Diff line
@@ -611,7 +611,7 @@ static struct spi_driver corgi_lcd_driver = {
		.owner	= THIS_MODULE,
	},
	.probe		= corgi_lcd_probe,
	.remove		= __devexit_p(corgi_lcd_remove),
	.remove		= corgi_lcd_remove,
	.suspend	= corgi_lcd_suspend,
	.resume		= corgi_lcd_resume,
};
Loading