diff options
author | Dmitri Vorobiev <dmitri.vorobiev@movial.com> | 2009-03-23 00:12:29 +0200 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2009-03-30 14:49:45 +0200 |
commit | 76544504aebc606b8279a5314595af5d568e7fea (patch) | |
tree | 059a614fcac555cc1f3feae78cd8f4f2d193b4f3 /arch/mips | |
parent | 1451a395a8672ba232bba3649ed57120e46826b5 (diff) | |
download | op-kernel-dev-76544504aebc606b8279a5314595af5d568e7fea.zip op-kernel-dev-76544504aebc606b8279a5314595af5d568e7fea.tar.gz |
MIPS: Make a needlessly global symbol static in arch/mips/kernel/smp.c
The variable cpu_callin_map is needlessly defined global, so let's
make it static now.
Build-tested using malta_defconfig.
Signed-off-by: Dmitri Vorobiev <dmitri.vorobiev@movial.com>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips')
-rw-r--r-- | arch/mips/kernel/smp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/kernel/smp.c b/arch/mips/kernel/smp.c index 3da9470..c937506 100644 --- a/arch/mips/kernel/smp.c +++ b/arch/mips/kernel/smp.c @@ -44,7 +44,7 @@ #include <asm/mipsmtregs.h> #endif /* CONFIG_MIPS_MT_SMTC */ -volatile cpumask_t cpu_callin_map; /* Bitmask of started secondaries */ +static volatile cpumask_t cpu_callin_map; /* Bitmask of started secondaries */ int __cpu_number_map[NR_CPUS]; /* Map physical to logical */ int __cpu_logical_map[NR_CPUS]; /* Map logical to physical */ |