diff options
author | Russell King <rmk+kernel@arm.linux.org.uk> | 2011-05-27 13:56:12 -0700 |
---|---|---|
committer | Kevin Hilman <khilman@ti.com> | 2011-06-06 16:14:46 -0700 |
commit | c8fb13d04ad0d08772f637bee873e620fcc064c2 (patch) | |
tree | 38c9a25b5a53e855c9c2edf77f45269394d464f0 /arch | |
parent | 59c5f46fbe01a00eedf54a23789634438bb80603 (diff) | |
download | linux-stable-c8fb13d04ad0d08772f637bee873e620fcc064c2.tar.gz linux-stable-c8fb13d04ad0d08772f637bee873e620fcc064c2.tar.bz2 linux-stable-c8fb13d04ad0d08772f637bee873e620fcc064c2.zip |
OMAP: PM debug: fix section mismatch warnings
WARNING: arch/arm/mach-omap2/built-in.o(.text+0x423c): Section mismatch in reference from the function pm_dbg_regset_init() to the function .init.text:pm_dbg_init()
The function pm_dbg_regset_init() references
the function __init pm_dbg_init().
This is often because pm_dbg_regset_init lacks a __init
annotation or the annotation of pm_dbg_init is wrong.
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Signed-off-by: Kevin Hilman <khilman@ti.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/mach-omap2/pm-debug.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-omap2/pm-debug.c b/arch/arm/mach-omap2/pm-debug.c index a5a83b358ddd..e01da45c0537 100644 --- a/arch/arm/mach-omap2/pm-debug.c +++ b/arch/arm/mach-omap2/pm-debug.c @@ -189,7 +189,7 @@ static struct dentry *pm_dbg_dir; static int pm_dbg_init_done; -static int __init pm_dbg_init(void); +static int pm_dbg_init(void); enum { DEBUG_FILE_COUNTERS = 0, @@ -595,7 +595,7 @@ static int option_set(void *data, u64 val) DEFINE_SIMPLE_ATTRIBUTE(pm_dbg_option_fops, option_get, option_set, "%llu\n"); -static int __init pm_dbg_init(void) +static int pm_dbg_init(void) { int i; struct dentry *d; |