summaryrefslogtreecommitdiffstats
path: root/arch/arm
diff options
context:
space:
mode:
authorVenkatraman Sathiyamoorthy2012-08-03 08:58:33 +0200
committerRussell King2012-08-11 10:15:56 +0200
commitf7e416eb923d0f9ff1e5e9b5c0e8b75ddd7db865 (patch)
treeb6d8ce136c9d4bdd644891406f3939872969391a /arch/arm
parentMerge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net (diff)
downloadkernel-qcow2-linux-f7e416eb923d0f9ff1e5e9b5c0e8b75ddd7db865.tar.gz
kernel-qcow2-linux-f7e416eb923d0f9ff1e5e9b5c0e8b75ddd7db865.tar.xz
kernel-qcow2-linux-f7e416eb923d0f9ff1e5e9b5c0e8b75ddd7db865.zip
ARM: 7482/1: topology: fix section mismatch warning for init_cpu_topology
Get rid of this warning.. arch/arm/kernel/built-in.o(.text+0xac78): Section mismatch in reference from the function init_cpu_topology() to the function .init.text:parse_dt_topology() The function init_cpu_topology() references the function __init parse_dt_topology(). This is often because init_cpu_topology lacks a __init annotation or the annotation of parse_dt_topology is wrong. Signed-off-by: Venkatraman S <svenkatr@ti.com> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm')
-rw-r--r--arch/arm/kernel/topology.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/kernel/topology.c b/arch/arm/kernel/topology.c
index 198b08456e90..26c12c6440fc 100644
--- a/arch/arm/kernel/topology.c
+++ b/arch/arm/kernel/topology.c
@@ -321,7 +321,7 @@ void store_cpu_topology(unsigned int cpuid)
* init_cpu_topology is called at boot when only one cpu is running
* which prevent simultaneous write access to cpu_topology array
*/
-void init_cpu_topology(void)
+void __init init_cpu_topology(void)
{
unsigned int cpu;