From 13d019baba28e7e51ad4a47d316dbae425f7b41a Mon Sep 17 00:00:00 2001 From: vit9696 Date: Sun, 31 May 2020 05:12:40 +0300 Subject: [PATCH] Docs: Mention Hyper-V fixes by Goldfish --- Changelog.md | 1 + Library/OcCpuLib/FrequencyDetect.c | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Changelog.md b/Changelog.md index 9202d9c8..ae667212 100644 --- a/Changelog.md +++ b/Changelog.md @@ -42,6 +42,7 @@ OpenCore Changelog - Added first-class Windows support to bless model - Fixed `LapicKernelPanic` kernel quirk on 10.9 - Added prebuilt version of `CrScreenshotDxe` driver +- Fixed Hyper-V frequency detection compatibility #### v0.5.8 - Fixed invalid CPU object reference in SSDT-PLUG diff --git a/Library/OcCpuLib/FrequencyDetect.c b/Library/OcCpuLib/FrequencyDetect.c index c0f14bfe..c7627700 100644 --- a/Library/OcCpuLib/FrequencyDetect.c +++ b/Library/OcCpuLib/FrequencyDetect.c @@ -487,7 +487,7 @@ InternalCalculateVMTFrequency ( // // HV_X64_MSR_TSC_FREQUENCY // - Msr = AsmReadMsr64 (0x40000022); + Msr = AsmReadMsr64 (0x40000022); return Msr; } -- GitLab