diff options
Diffstat (limited to 'include/asm-x86/cpufeature.h')
-rw-r--r-- | include/asm-x86/cpufeature.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/asm-x86/cpufeature.h b/include/asm-x86/cpufeature.h index 29727bf0e177..b8f53f869e1f 100644 --- a/include/asm-x86/cpufeature.h +++ b/include/asm-x86/cpufeature.h | |||
@@ -131,6 +131,10 @@ | |||
131 | 131 | ||
132 | #define set_cpu_cap(c, bit) set_bit(bit, (unsigned long *)((c)->x86_capability)) | 132 | #define set_cpu_cap(c, bit) set_bit(bit, (unsigned long *)((c)->x86_capability)) |
133 | #define clear_cpu_cap(c, bit) clear_bit(bit, (unsigned long *)((c)->x86_capability)) | 133 | #define clear_cpu_cap(c, bit) clear_bit(bit, (unsigned long *)((c)->x86_capability)) |
134 | #define setup_clear_cpu_cap(bit) do { \ | ||
135 | clear_cpu_cap(&boot_cpu_data, bit); \ | ||
136 | set_bit(bit, cleared_cpu_caps); \ | ||
137 | } while (0) | ||
134 | 138 | ||
135 | #define cpu_has_fpu boot_cpu_has(X86_FEATURE_FPU) | 139 | #define cpu_has_fpu boot_cpu_has(X86_FEATURE_FPU) |
136 | #define cpu_has_vme boot_cpu_has(X86_FEATURE_VME) | 140 | #define cpu_has_vme boot_cpu_has(X86_FEATURE_VME) |