aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-omap1/io.c
diff options
context:
space:
mode:
authorTony Lindgren <tony@atomide.com>2012-03-05 16:11:04 -0800
committerTony Lindgren <tony@atomide.com>2012-03-05 16:11:04 -0800
commit8eaa7bb0b363707db6d1323e4fbc0783bc55d22d (patch)
treea76980089ded585a2b23412ecbe53b53bbb3482b /arch/arm/mach-omap1/io.c
parentARM: OMAP1: Fix typo in lcd_dma.c (diff)
downloadlinux-dev-8eaa7bb0b363707db6d1323e4fbc0783bc55d22d.tar.xz
linux-dev-8eaa7bb0b363707db6d1323e4fbc0783bc55d22d.zip
ARM: OMAP1: Fix section mismatch for omap1_init_early()
Fix the following warning: WARNING: vmlinux.o(.text+0x1286c): Section mismatch in reference from the function omap1_init_early() to the function .init.text:omap1_clk_init() The function omap1_init_early() references the function __init omap1_clk_init(). This is often because omap1_init_early lacks a __init annotation or the annotation of omap1_clk_init is wrong. Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/mach-omap1/io.c')
-rw-r--r--arch/arm/mach-omap1/io.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-omap1/io.c b/arch/arm/mach-omap1/io.c
index 8e55b6fb3478..55a8f582d04c 100644
--- a/arch/arm/mach-omap1/io.c
+++ b/arch/arm/mach-omap1/io.c
@@ -118,7 +118,7 @@ void __init omap16xx_map_io(void)
/*
* Common low-level hardware init for omap1.
*/
-void omap1_init_early(void)
+void __init omap1_init_early(void)
{
omap_check_revision();