aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-x86/cpufeature.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/asm-x86/cpufeature.h')
-rw-r--r--include/asm-x86/cpufeature.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/asm-x86/cpufeature.h b/include/asm-x86/cpufeature.h
index 761922972f6f..87dd900154d1 100644
--- a/include/asm-x86/cpufeature.h
+++ b/include/asm-x86/cpufeature.h
@@ -124,9 +124,12 @@
124 (((bit)>>5)==6 && (1UL<<((bit)&31) & REQUIRED_MASK6)) || \ 124 (((bit)>>5)==6 && (1UL<<((bit)&31) & REQUIRED_MASK6)) || \
125 (((bit)>>5)==7 && (1UL<<((bit)&31) & REQUIRED_MASK7)) ) \ 125 (((bit)>>5)==7 && (1UL<<((bit)&31) & REQUIRED_MASK7)) ) \
126 ? 1 : \ 126 ? 1 : \
127 test_bit(bit, (unsigned long *)(c)->x86_capability)) 127 test_bit(bit, (unsigned long *)((c)->x86_capability)))
128#define boot_cpu_has(bit) cpu_has(&boot_cpu_data, bit) 128#define boot_cpu_has(bit) cpu_has(&boot_cpu_data, bit)
129 129
130#define set_cpu_cap(c, bit) set_bit(bit, (unsigned long *)((c)->x86_capability))
131#define clear_cpu_cap(c, bit) clear_bit(bit, (unsigned long *)((c)->x86_capability))
132
130#define cpu_has_fpu boot_cpu_has(X86_FEATURE_FPU) 133#define cpu_has_fpu boot_cpu_has(X86_FEATURE_FPU)
131#define cpu_has_vme boot_cpu_has(X86_FEATURE_VME) 134#define cpu_has_vme boot_cpu_has(X86_FEATURE_VME)
132#define cpu_has_de boot_cpu_has(X86_FEATURE_DE) 135#define cpu_has_de boot_cpu_has(X86_FEATURE_DE)