Match renamed I/O register helpers

This commit is contained in:
2025-09-11 19:08:20 +02:00
parent 744fffdd8a
commit 3395934330

View File

@@ -46,7 +46,7 @@ HlReadApicRegister(IN APIC_REGISTER Register)
else
{
/* Read from xAPIC */
return RtlReadRegisterLong((PULONG)(APIC_BASE + (Register << 4)));
return HlReadRegister32((PULONG)(APIC_BASE + (Register << 4)));
}
}
@@ -91,7 +91,7 @@ HlWriteApicRegister(IN APIC_REGISTER Register,
else
{
/* Write to xAPIC */
RtlWriteRegisterLong((PULONG)(APIC_BASE + (Register << 4)), Value);
HlWriteRegister32((PULONG)(APIC_BASE + (Register << 4)), Value);
}
}