diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/asm-x86/cpufeature.h | 4 | ||||
-rw-r--r-- | include/asm-x86/tsc.h | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/include/asm-x86/cpufeature.h b/include/asm-x86/cpufeature.h index b8f53f869e1f..3fb7dfa7fc91 100644 --- a/include/asm-x86/cpufeature.h +++ b/include/asm-x86/cpufeature.h | |||
@@ -135,6 +135,10 @@ | |||
135 | clear_cpu_cap(&boot_cpu_data, bit); \ | 135 | clear_cpu_cap(&boot_cpu_data, bit); \ |
136 | set_bit(bit, cleared_cpu_caps); \ | 136 | set_bit(bit, cleared_cpu_caps); \ |
137 | } while (0) | 137 | } while (0) |
138 | #define setup_force_cpu_cap(bit) do { \ | ||
139 | set_cpu_cap(&boot_cpu_data, bit); \ | ||
140 | clear_bit(bit, cleared_cpu_caps); \ | ||
141 | } while (0) | ||
138 | 142 | ||
139 | #define cpu_has_fpu boot_cpu_has(X86_FEATURE_FPU) | 143 | #define cpu_has_fpu boot_cpu_has(X86_FEATURE_FPU) |
140 | #define cpu_has_vme boot_cpu_has(X86_FEATURE_VME) | 144 | #define cpu_has_vme boot_cpu_has(X86_FEATURE_VME) |
diff --git a/include/asm-x86/tsc.h b/include/asm-x86/tsc.h index 071e0ce5b664..a6e8d35c3f86 100644 --- a/include/asm-x86/tsc.h +++ b/include/asm-x86/tsc.h | |||
@@ -16,8 +16,6 @@ typedef unsigned long long cycles_t; | |||
16 | 16 | ||
17 | extern unsigned int cpu_khz; | 17 | extern unsigned int cpu_khz; |
18 | extern unsigned int tsc_khz; | 18 | extern unsigned int tsc_khz; |
19 | /* flag for disabling the tsc */ | ||
20 | extern int tsc_disable; | ||
21 | 19 | ||
22 | extern void disable_TSC(void); | 20 | extern void disable_TSC(void); |
23 | 21 | ||