From a6814aa2a3846fc945943e45f3d241657debaa9d Mon Sep 17 00:00:00 2001 From: Aiken Harris Date: Sun, 10 Aug 2025 16:59:32 +0200 Subject: [PATCH] Resolve compilation errors due to renamed CPUID requests --- xtoskrnl/hl/x86/pic.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xtoskrnl/hl/x86/pic.c b/xtoskrnl/hl/x86/pic.c index a189365..64a191d 100644 --- a/xtoskrnl/hl/x86/pic.c +++ b/xtoskrnl/hl/x86/pic.c @@ -112,7 +112,7 @@ HlpCheckX2ApicSupport(VOID) CPUID_REGISTERS CpuRegisters; /* Prepare CPUID registers */ - CpuRegisters.Leaf = CPUID_GET_CPU_FEATURES; + CpuRegisters.Leaf = CPUID_GET_STANDARD1_FEATURES; CpuRegisters.SubLeaf = 0; CpuRegisters.Eax = 0; CpuRegisters.Ebx = 0;