aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/leds
diff options
context:
space:
mode:
authorJingoo Han <jg1.han@samsung.com>2013-02-27 19:55:14 -0800
committerBryan Wu <cooloney@gmail.com>2013-04-01 11:04:49 -0700
commite9dd68cf148994bf2eb718c540a472170b1ad4d3 (patch)
tree2abcbfb126f53a50e6dcfb0d7193cd1561083c05 /drivers/leds
parentleds: atmel-pwm: remove erroneous __exit annotation (diff)
downloadlinux-dev-e9dd68cf148994bf2eb718c540a472170b1ad4d3.tar.xz
linux-dev-e9dd68cf148994bf2eb718c540a472170b1ad4d3.zip
leds: leds-bd2802: remove erroneous __exit annotation
CONFIG_HOTPLUG was removed, so __devexit or __exit of remove() should not be used. Signed-off-by: Jingoo Han <jg1.han@samsung.com> Signed-off-by: Bryan Wu <cooloney@gmail.com>
Diffstat (limited to 'drivers/leds')
-rw-r--r--drivers/leds/leds-bd2802.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/leds/leds-bd2802.c b/drivers/leds/leds-bd2802.c
index 851517030cc1..9f9177d29ed7 100644
--- a/drivers/leds/leds-bd2802.c
+++ b/drivers/leds/leds-bd2802.c
@@ -732,7 +732,7 @@ failed_unregister_dev_file:
return ret;
}
-static int __exit bd2802_remove(struct i2c_client *client)
+static int bd2802_remove(struct i2c_client *client)
{
struct bd2802_led *led = i2c_get_clientdata(client);
int i;
@@ -804,7 +804,7 @@ static struct i2c_driver bd2802_i2c_driver = {
.pm = BD2802_PM,
},
.probe = bd2802_probe,
- .remove = __exit_p(bd2802_remove),
+ .remove = bd2802_remove,
.id_table = bd2802_id,
};