From: Jingoo Han Date: Sun, 10 Mar 2013 10:54:51 +0000 (+1100) Subject: drivers/video/backlight/ep93xx_bl.c: remove incorrect __init annotation X-Git-Tag: next-20130312~3^2~211 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=9e878370c6746ffb5851f5d39e2a2af0bdcfad96;p=karo-tx-linux.git drivers/video/backlight/ep93xx_bl.c: remove incorrect __init annotation When platform_driver_probe() is not used, bind/unbind via sysfs is enabled. Thus, __init/__exit annotations should be removed from probe()/remove(). Signed-off-by: Jingoo Han Acked-by: Ryan Mallon Signed-off-by: Andrew Morton --- diff --git a/drivers/video/backlight/ep93xx_bl.c b/drivers/video/backlight/ep93xx_bl.c index ef3e21e8f825..fd073b277e48 100644 --- a/drivers/video/backlight/ep93xx_bl.c +++ b/drivers/video/backlight/ep93xx_bl.c @@ -60,7 +60,7 @@ static const struct backlight_ops ep93xxbl_ops = { .get_brightness = ep93xxbl_get_brightness, }; -static int __init ep93xxbl_probe(struct platform_device *dev) +static int ep93xxbl_probe(struct platform_device *dev) { struct ep93xxbl *ep93xxbl; struct backlight_device *bl;