projects
/
GitHub
/
LineageOS
/
G12
/
android_kernel_amlogic_linux-4.9.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
38232f7
)
ARM: OMAP2+: Fix devexit for smartreflex when CONFIG_HOTPLUG is not set
author
Tony Lindgren
<tony@atomide.com>
Thu, 23 Feb 2012 22:55:40 +0000
(14:55 -0800)
committer
Tony Lindgren
<tony@atomide.com>
Fri, 24 Feb 2012 16:24:46 +0000
(08:24 -0800)
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>
arch/arm/mach-omap2/smartreflex.c
patch
|
blob
|
blame
|
history
diff --git
a/arch/arm/mach-omap2/smartreflex.c
b/arch/arm/mach-omap2/smartreflex.c
index 7e755bb0ffc4c6a9bbfa906609cc370e383fdbf1..47c77a1d932a281d98847cbd5eb92575f49a16c7 100644
(file)
--- 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",
},