apic: make msr-related function names consistent with the overall style

This commit is contained in:
2025-08-30 21:11:51 +03:00
parent 649c4c56a4
commit 982f1a5fae
4 changed files with 11 additions and 11 deletions
+2 -2
View File
@@ -46,12 +46,12 @@ void kmain(unsigned int magic, unsigned int info)
isr_install();
if(cpuHasMSR())
if(cpu_has_msr())
{
printf("CPU has MSR\n");
}
if(check_apic() && cpuHasMSR())
if(check_apic() && cpu_has_msr())
{
printf("APIC is present\n");
lapic_enabled = true;