diff options
author | Chen Gang <gang.chen@asianux.com> | 2013-10-22 22:12:05 -0400 |
---|---|---|
committer | Vineet Gupta <vgupta@synopsys.com> | 2013-11-06 00:11:42 -0500 |
commit | ef3a661af69046df74beb0ddfa27204aad316385 (patch) | |
tree | 308059fdb1098ba6aed9c5605b04018da0d6eb4a | |
parent | 3d01c1ce41fae0fb1d8e50589f9fb3b1fa376c1c (diff) |
arc: remove '__init' for setup_processor() and arc_init_IRQ()
They haven't '__init' in definition, but has '__init' in declaration.
And normal function start_kernel_secondary() may call setup_processor()
which will call arc_init_IRQ().
So need remove '__init' for both of them. The related warning (with
allmodconfig):
MODPOST vmlinux.o
WARNING: vmlinux.o(.text+0x3084): Section mismatch in reference from the function start_kernel_secondary() to the function .init.text:setup_processor()
The function start_kernel_secondary() references
the function __init setup_processor().
This is often because start_kernel_secondary lacks a __init
annotation or the annotation of setup_processor is wrong.
Signed-off-by: Chen Gang <gang.chen@asianux.com>
-rw-r--r-- | arch/arc/include/asm/irq.h | 2 | ||||
-rw-r--r-- | arch/arc/include/asm/setup.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/arch/arc/include/asm/irq.h b/arch/arc/include/asm/irq.h index c0a72105ee0b..548207f073da 100644 --- a/arch/arc/include/asm/irq.h +++ b/arch/arc/include/asm/irq.h | |||
@@ -18,7 +18,7 @@ | |||
18 | 18 | ||
19 | #include <asm-generic/irq.h> | 19 | #include <asm-generic/irq.h> |
20 | 20 | ||
21 | extern void __init arc_init_IRQ(void); | 21 | extern void arc_init_IRQ(void); |
22 | extern int __init get_hw_config_num_irq(void); | 22 | extern int __init get_hw_config_num_irq(void); |
23 | 23 | ||
24 | void arc_local_timer_setup(unsigned int cpu); | 24 | void arc_local_timer_setup(unsigned int cpu); |
diff --git a/arch/arc/include/asm/setup.h b/arch/arc/include/asm/setup.h index 229e50681497..e10f8cef56a8 100644 --- a/arch/arc/include/asm/setup.h +++ b/arch/arc/include/asm/setup.h | |||
@@ -31,7 +31,7 @@ struct cpuinfo_data { | |||
31 | extern int root_mountflags, end_mem; | 31 | extern int root_mountflags, end_mem; |
32 | extern int running_on_hw; | 32 | extern int running_on_hw; |
33 | 33 | ||
34 | void __init setup_processor(void); | 34 | void setup_processor(void); |
35 | void __init setup_arch_memory(void); | 35 | void __init setup_arch_memory(void); |
36 | 36 | ||
37 | #endif /* __ASMARC_SETUP_H */ | 37 | #endif /* __ASMARC_SETUP_H */ |