1
0
Fork 0
mirror of https://github.com/hermitcore/libhermit.git synced 2025-03-09 00:00:03 +01:00

remove debug message

This commit is contained in:
Stefan Lankes 2016-03-16 13:22:09 +01:00
parent 53184c7d3d
commit 00aee67022

View file

@ -163,7 +163,7 @@ static inline void x2apic_disable(void)
msr = rdmsr(MSR_APIC_BASE);
if (!(msr & MSR_X2APIC_ENABLE)) {
kprintf("X2APIC already disabled!\n");
//kprintf("X2APIC already disabled!\n");
return;
}
@ -190,7 +190,7 @@ static inline void x2apic_enable(void)
msr = rdmsr(MSR_APIC_BASE);
if (msr & MSR_X2APIC_ENABLE) {
kprintf("X2APIC already enabled!\n");
//kprintf("X2APIC already enabled!\n");
return;
}