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

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

leds: remove use of __devexit



CONFIG_HOTPLUG is going away as an option so __devexit 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 98ea1ea2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -183,7 +183,7 @@ static int adp5520_led_probe(struct platform_device *pdev)
	return ret;
}

static int __devexit adp5520_led_remove(struct platform_device *pdev)
static int adp5520_led_remove(struct platform_device *pdev)
{
	struct adp5520_leds_platform_data *pdata = pdev->dev.platform_data;
	struct adp5520_led *led;
+1 −1
Original line number Diff line number Diff line
@@ -125,7 +125,7 @@ static int asic3_led_probe(struct platform_device *pdev)
	return ret;
}

static int __devexit asic3_led_remove(struct platform_device *pdev)
static int asic3_led_remove(struct platform_device *pdev)
{
	struct asic3_led *led = pdev->dev.platform_data;

+1 −1
Original line number Diff line number Diff line
@@ -743,7 +743,7 @@ static int blinkm_probe(struct i2c_client *client,
	return err;
}

static int __devexit blinkm_remove(struct i2c_client *client)
static int blinkm_remove(struct i2c_client *client)
{
	struct blinkm_data *data = i2c_get_clientdata(client);
	int ret = 0;
+1 −1
Original line number Diff line number Diff line
@@ -63,7 +63,7 @@ static int cobalt_qube_led_probe(struct platform_device *pdev)
	return retval;
}

static int __devexit cobalt_qube_led_remove(struct platform_device *pdev)
static int cobalt_qube_led_remove(struct platform_device *pdev)
{
	led_classdev_unregister(&qube_front_led);

+1 −1
Original line number Diff line number Diff line
@@ -109,7 +109,7 @@ static int cobalt_raq_led_probe(struct platform_device *pdev)
	return retval;
}

static int __devexit cobalt_raq_led_remove(struct platform_device *pdev)
static int cobalt_raq_led_remove(struct platform_device *pdev)
{
	led_classdev_unregister(&raq_power_off_led);
	led_classdev_unregister(&raq_web_led);
Loading