From: Kyle McMartin Date: Wed, 30 Jan 2008 12:33:15 +0000 (+0100) Subject: x86: 64-bit, remove redundant cpu_has_ definitions X-Git-Tag: v2.6.25-rc1~1143^2~266 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e34cda04d4ec0114185459eb101a2245563bbeba;p=platform%2Fkernel%2Flinux-exynos.git x86: 64-bit, remove redundant cpu_has_ definitions PSE, PGE, XMM, XMM2, and FXSR are defined as required features, and will be optimized to a constant at compile time. Remove their redundant definitions. Signed-off-by: Kyle McMartin Signed-off-by: Ingo Molnar Signed-off-by: Thomas Gleixner --- diff --git a/include/asm-x86/cpufeature.h b/include/asm-x86/cpufeature.h index 93c143f..29727bf 100644 --- a/include/asm-x86/cpufeature.h +++ b/include/asm-x86/cpufeature.h @@ -194,21 +194,6 @@ #undef cpu_has_centaur_mcr #define cpu_has_centaur_mcr 0 -#undef cpu_has_pse -#define cpu_has_pse 1 - -#undef cpu_has_pge -#define cpu_has_pge 1 - -#undef cpu_has_xmm -#define cpu_has_xmm 1 - -#undef cpu_has_xmm2 -#define cpu_has_xmm2 1 - -#undef cpu_has_fxsr -#define cpu_has_fxsr 1 - #endif /* CONFIG_X86_64 */ #endif /* _ASM_X86_CPUFEATURE_H */