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

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

leds: 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: Jan-Simon Moeller <jansimon.moeller@gmx.de>
Acked-by: default avatarBryan Wu <cooloney@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 6e0ee714
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -208,7 +208,7 @@ static struct platform_driver adp5520_led_driver = {
		.owner	= THIS_MODULE,
	},
	.probe		= adp5520_led_probe,
	.remove		= __devexit_p(adp5520_led_remove),
	.remove		= adp5520_led_remove,
};

module_platform_driver(adp5520_led_driver);
+1 −1
Original line number Diff line number Diff line
@@ -167,7 +167,7 @@ static const struct dev_pm_ops asic3_led_pm_ops = {

static struct platform_driver asic3_led_driver = {
	.probe		= asic3_led_probe,
	.remove		= __devexit_p(asic3_led_remove),
	.remove		= asic3_led_remove,
	.driver		= {
		.name	= "leds-asic3",
		.owner	= THIS_MODULE,
+1 −1
Original line number Diff line number Diff line
@@ -801,7 +801,7 @@ static struct i2c_driver blinkm_driver = {
		   .name = "blinkm",
		   },
	.probe = blinkm_probe,
	.remove = __devexit_p(blinkm_remove),
	.remove = blinkm_remove,
	.id_table = blinkm_id,
	.detect = blinkm_detect,
	.address_list = normal_i2c,
+1 −1
Original line number Diff line number Diff line
@@ -77,7 +77,7 @@ static int __devexit cobalt_qube_led_remove(struct platform_device *pdev)

static struct platform_driver cobalt_qube_led_driver = {
	.probe	= cobalt_qube_led_probe,
	.remove	= __devexit_p(cobalt_qube_led_remove),
	.remove	= cobalt_qube_led_remove,
	.driver	= {
		.name	= "cobalt-qube-leds",
		.owner	= THIS_MODULE,
+1 −1
Original line number Diff line number Diff line
@@ -124,7 +124,7 @@ static int __devexit cobalt_raq_led_remove(struct platform_device *pdev)

static struct platform_driver cobalt_raq_led_driver = {
	.probe	= cobalt_raq_led_probe,
	.remove	= __devexit_p(cobalt_raq_led_remove),
	.remove	= cobalt_raq_led_remove,
	.driver = {
		.name	= "cobalt-raq-leds",
		.owner	= THIS_MODULE,
Loading