From: Arnd Bergmann Date: Sat, 1 Oct 2011 16:42:47 +0000 (+0200) Subject: ARM: omap: use __devexit_p in dmtimer driver X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=4c23c8da96de1af7ed88ee5258af613e8c03c3ad;p=mv-sheeva.git ARM: omap: use __devexit_p in dmtimer driver The omap_dm_timer_remove function gets discarded when CONFIG_HOTPLUG is not set, so we must not reference it unconditionally. Signed-off-by: Arnd Bergmann --- diff --git a/arch/arm/plat-omap/dmtimer.c b/arch/arm/plat-omap/dmtimer.c index de7896fd9b3..2def4e1990e 100644 --- a/arch/arm/plat-omap/dmtimer.c +++ b/arch/arm/plat-omap/dmtimer.c @@ -723,7 +723,7 @@ static int __devexit omap_dm_timer_remove(struct platform_device *pdev) static struct platform_driver omap_dm_timer_driver = { .probe = omap_dm_timer_probe, - .remove = omap_dm_timer_remove, + .remove = __devexit_p(omap_dm_timer_remove), .driver = { .name = "omap_timer", },