From: Chris Dearman Date: Fri, 30 Jun 2006 11:32:37 +0000 (+0100) Subject: [MIPS] Default cpu_has_mipsmt to a runtime check X-Git-Tag: v2.6.18-rc2~81^2~47 X-Git-Url: http://git.rot13.org/?a=commitdiff_plain;ds=sidebyside;h=2e128dedcd66d2f17f42a45dacc223fa2dcd8acd;p=powerpc.git [MIPS] Default cpu_has_mipsmt to a runtime check Signed-off-by: Chris Dearman Signed-off-by: Ralf Baechle --- diff --git a/include/asm-mips/cpu-features.h b/include/asm-mips/cpu-features.h index 44285a9d55..3c2fc2b647 100644 --- a/include/asm-mips/cpu-features.h +++ b/include/asm-mips/cpu-features.h @@ -143,12 +143,8 @@ #define cpu_has_dsp (cpu_data[0].ases & MIPS_ASE_DSP) #endif -#ifdef CONFIG_MIPS_MT #ifndef cpu_has_mipsmt -# define cpu_has_mipsmt (cpu_data[0].ases & MIPS_ASE_MIPSMT) -#endif -#else -# define cpu_has_mipsmt 0 +#define cpu_has_mipsmt (cpu_data[0].ases & MIPS_ASE_MIPSMT) #endif #ifdef CONFIG_32BIT