Disable HPET use on x86

This commit is contained in:
Jeremy Soller
2022-08-26 11:13:53 -06:00
parent 6dbb85d4c9
commit 6f6648c4d2

View File

@@ -37,7 +37,7 @@ unsafe fn init_hpet() -> bool {
}
pub unsafe fn init_noncore() {
if init_hpet() {
if false /*TODO: init_hpet()*/ {
log::info!("HPET used as system timer");
} else {
pit::init();