Remove debugging printf

This commit is contained in:
Ali Mashtizadeh 2014-12-29 20:15:15 -08:00
parent 28fa88ef3c
commit d5bed8e29a

View File

@ -179,7 +179,6 @@ PMap_Translate(uintptr_t va)
// Handle 4KB pages
entry = &table->entries[l];
kprintf("%llx\n%llx\n", va, (*entry & ~(PGMASK | PTE_NX)) + (va & PGMASK));
return (*entry & ~(PGMASK | PTE_NX)) + (va & PGMASK);
}