From 973f860f576bd2c18d0f3d55ea90aff8fc313b36 Mon Sep 17 00:00:00 2001 From: Jingoo Han Date: Thu, 29 Nov 2012 14:18:28 +1100 Subject: [PATCH] drivers/video/backlight/ep93xx_bl.c: fix section mismatch Fix section mismatch warning as below: WARNING: drivers/video/backlight/built-in.o(.data+0x110): Section mismatch in reference from the variable ep93xxbl_driver to the function .init.text:ep93xxbl_probe() The variable ep93xxbl_driver references the function __init ep93xxbl_probe() If the reference is valid then annotate the variable with __init* or __refdata (see linux/init.h) or name the variable: *_template, *_timer, *_sht, *_ops, *_probe, *_probe_one, *_console Signed-off-by: Jingoo Han Cc: H Hartley Sweeten Cc: Richard Purdie Signed-off-by: Andrew Morton --- drivers/video/backlight/ep93xx_bl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/video/backlight/ep93xx_bl.c b/drivers/video/backlight/ep93xx_bl.c index ef3e21e8f825..f50b580d280a 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 __devinit ep93xxbl_probe(struct platform_device *dev) { struct ep93xxbl *ep93xxbl; struct backlight_device *bl; @@ -106,7 +106,7 @@ static int __init ep93xxbl_probe(struct platform_device *dev) return 0; } -static int ep93xxbl_remove(struct platform_device *dev) +static int __devexit ep93xxbl_remove(struct platform_device *dev) { struct backlight_device *bl = platform_get_drvdata(dev); -- 2.39.5