gic_present variable will be used only in malta platforms.Other platforms with VSMP support will throw link error. Signed-off-by: Anoop P A <anoop.pa@xxxxxxxxx> --- arch/mips/kernel/smp-mt.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/arch/mips/kernel/smp-mt.c b/arch/mips/kernel/smp-mt.c index 43e7cdc..5b91c1a 100644 --- a/arch/mips/kernel/smp-mt.c +++ b/arch/mips/kernel/smp-mt.c @@ -151,6 +151,7 @@ static void vsmp_send_ipi_mask(const struct cpumask *mask, unsigned int action) static void __cpuinit vsmp_init_secondary(void) { +#ifdef CONFIG_MIPS_MALTA extern int gic_present; /* This is Malta specific: IPI,performance and timer inetrrupts */ @@ -158,6 +159,7 @@ static void __cpuinit vsmp_init_secondary(void) change_c0_status(ST0_IM, STATUSF_IP3 | STATUSF_IP4 | STATUSF_IP6 | STATUSF_IP7); else +#endif /* CONFIG_MIPS_MALTA */ change_c0_status(ST0_IM, STATUSF_IP0 | STATUSF_IP1 | STATUSF_IP6 | STATUSF_IP7); } -- 1.7.0.4