aboutsummaryrefslogtreecommitdiffstats
path: root/arch/mips/netlogic/common/smp.c
diff options
context:
space:
mode:
authorJayachandran C <jchandra@broadcom.com>2012-10-31 12:01:35 +0000
committerJohn Crispin <blogic@openwrt.org>2012-11-09 11:37:19 +0100
commitfeddaf7d89d554b705e7eb14a9202c4946e57c8e (patch)
tree8f0ac095229b404f7503f5b916f922a1fe21be3c /arch/mips/netlogic/common/smp.c
parentMIPS: Netlogic: Fix interrupt table entry init (diff)
downloadlinux-dev-feddaf7d89d554b705e7eb14a9202c4946e57c8e.tar.xz
linux-dev-feddaf7d89d554b705e7eb14a9202c4946e57c8e.zip
MIPS: Netlogic: Pass cpuid to early_init_secondary
The cpuid was not passed into early_init_secondary even though the comment indicated that it will be. Fix this. Signed-off-by: Jayachandran C <jchandra@broadcom.com> Patchwork: http://patchwork.linux-mips.org/patch/4458 Signed-off-by: John Crispin <blogic@openwrt.org>
Diffstat (limited to 'arch/mips/netlogic/common/smp.c')
-rw-r--r--arch/mips/netlogic/common/smp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/netlogic/common/smp.c b/arch/mips/netlogic/common/smp.c
index fab316de57e9..cd39f5429e8a 100644
--- a/arch/mips/netlogic/common/smp.c
+++ b/arch/mips/netlogic/common/smp.c
@@ -98,7 +98,7 @@ void nlm_early_init_secondary(int cpu)
change_c0_config(CONF_CM_CMASK, 0x3);
write_c0_ebase((uint32_t)nlm_common_ebase);
#ifdef CONFIG_CPU_XLP
- if (hard_smp_processor_id() % 4 == 0)
+ if (cpu % 4 == 0)
xlp_mmu_init();
#endif
}