diff options
Diffstat (limited to 'Kernel/Arch/x86/common/Processor.cpp')
-rw-r--r-- | Kernel/Arch/x86/common/Processor.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Kernel/Arch/x86/common/Processor.cpp b/Kernel/Arch/x86/common/Processor.cpp index a34e489ea8..ff388b22a8 100644 --- a/Kernel/Arch/x86/common/Processor.cpp +++ b/Kernel/Arch/x86/common/Processor.cpp @@ -551,10 +551,6 @@ UNMAP_AFTER_INIT void Processor::cpu_setup() write_cr4(read_cr4() | 0x800); } - if (has_feature(CPUFeature::TSC)) { - write_cr4(read_cr4() | 0x4); - } - if (has_feature(CPUFeature::XSAVE)) { // Turn on CR4.OSXSAVE write_cr4(read_cr4() | 0x40000); |