The msp71xx/war.h file defines the value of MIPS34K_MISSED_ITLB_WAR for the various MSP7120 boards, but doesn't specify a value for other board types. Set it to 0 for other boards. This fixes a compile error when building for the MSP4200 boards. Signed-off-by: Shane McDonald <mcdonald.shane@xxxxxxxxx> --- arch/mips/include/asm/pmc-sierra/msp71xx/war.h | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/arch/mips/include/asm/pmc-sierra/msp71xx/war.h b/arch/mips/include/asm/pmc-sierra/msp71xx/war.h index 0bf48fc..713c960 100644 --- a/arch/mips/include/asm/pmc-sierra/msp71xx/war.h +++ b/arch/mips/include/asm/pmc-sierra/msp71xx/war.h @@ -23,6 +23,8 @@ #if defined(CONFIG_PMC_MSP7120_EVAL) || defined(CONFIG_PMC_MSP7120_GW) || \ defined(CONFIG_PMC_MSP7120_FPGA) #define MIPS34K_MISSED_ITLB_WAR 1 +#else +#define MIPS34K_MISSED_ITLB_WAR 0 #endif #endif /* __ASM_MIPS_PMC_SIERRA_WAR_H */ -- 1.6.2.4