From: Jingoo Han Date: Wed, 20 Mar 2013 04:07:36 +0000 (+1100) Subject: drivers/video/backlight/ep93xx_bl.c: remove incorrect __init annotation X-Git-Tag: next-20130321~2^2~290 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=f9af0854f7d0b3cb1a2ecee768a22109d27c51ae;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;