summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTony Lindgren <tony@atomide.com>2012-02-23 23:55:40 +0100
committerTony Lindgren <tony@atomide.com>2012-02-24 17:24:46 +0100
commit149f1d5c8d2fd6879cdf93ca70f1cb745e698a1e (patch)
tree3afc6cf36750614be2cb9af56450da5d82028133
parentARM: OMAP2+: Fix zoom LCD backlight if TWL_CORE is not selected (diff)
downloadlinux-149f1d5c8d2fd6879cdf93ca70f1cb745e698a1e.tar.xz
linux-149f1d5c8d2fd6879cdf93ca70f1cb745e698a1e.zip
ARM: OMAP2+: Fix devexit for smartreflex when CONFIG_HOTPLUG is not set
Otherwise we get: `omap_sr_remove' referenced in section `.data' of arch/arm/mach-omap2/built-in.o: defined in discarded section `.devexit.text' of arch/arm/mach-omap2/built-in.o Signed-off-by: Tony Lindgren <tony@atomide.com>
-rw-r--r--arch/arm/mach-omap2/smartreflex.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-omap2/smartreflex.c b/arch/arm/mach-omap2/smartreflex.c
index 7e755bb0ffc4..47c77a1d932a 100644
--- a/arch/arm/mach-omap2/smartreflex.c
+++ b/arch/arm/mach-omap2/smartreflex.c
@@ -1012,7 +1012,7 @@ static int __devexit omap_sr_remove(struct platform_device *pdev)
}
static struct platform_driver smartreflex_driver = {
- .remove = omap_sr_remove,
+ .remove = __devexit_p(omap_sr_remove),
.driver = {
.name = "smartreflex",
},