aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-x86/cpufeature.h
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2008-08-28 01:05:45 -0400
committerH. Peter Anvin <hpa@zytor.com>2008-08-28 01:05:45 -0400
commitaf2e1f276ff08f17192411ea3b71c13a758dfe12 (patch)
treec9940d02cebb4898f9674c25e9e7700117ca22e0 /include/asm-x86/cpufeature.h
parent2798c63e65cb0f05cc12a060b9b0d56ac9523c4d (diff)
x86: cpufeature: fix SMX flag
Impact: "smx" flags showed as "safer" in /proc/cpuinfo The SMX feature flag is the so-called "safer mode"... I had put that in quotes, but that flagged it as a cpuinfo flag name. Remove the quotes to correct the flag name in /proc/cpuinfo. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'include/asm-x86/cpufeature.h')
-rw-r--r--include/asm-x86/cpufeature.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-x86/cpufeature.h b/include/asm-x86/cpufeature.h
index 7710686c11f9..24d99d65741d 100644
--- a/include/asm-x86/cpufeature.h
+++ b/include/asm-x86/cpufeature.h
@@ -97,7 +97,7 @@
97#define X86_FEATURE_MWAIT (4*32+ 3) /* "monitor" Monitor/Mwait support */ 97#define X86_FEATURE_MWAIT (4*32+ 3) /* "monitor" Monitor/Mwait support */
98#define X86_FEATURE_DSCPL (4*32+ 4) /* "ds_cpl" CPL Qual. Debug Store */ 98#define X86_FEATURE_DSCPL (4*32+ 4) /* "ds_cpl" CPL Qual. Debug Store */
99#define X86_FEATURE_VMX (4*32+ 5) /* Hardware virtualization */ 99#define X86_FEATURE_VMX (4*32+ 5) /* Hardware virtualization */
100#define X86_FEATURE_SMX (4*32+ 6) /* "Safer" mode */ 100#define X86_FEATURE_SMX (4*32+ 6) /* Safer mode */
101#define X86_FEATURE_EST (4*32+ 7) /* Enhanced SpeedStep */ 101#define X86_FEATURE_EST (4*32+ 7) /* Enhanced SpeedStep */
102#define X86_FEATURE_TM2 (4*32+ 8) /* Thermal Monitor 2 */ 102#define X86_FEATURE_TM2 (4*32+ 8) /* Thermal Monitor 2 */
103#define X86_FEATURE_SSSE3 (4*32+ 9) /* Supplemental SSE-3 */ 103#define X86_FEATURE_SSSE3 (4*32+ 9) /* Supplemental SSE-3 */