diff --git a/src/arch/x86/device/mod.rs b/src/arch/x86/device/mod.rs
index eafa245c5c9286c8afab45f237d5319d18d8c2e3..14efd8b7813bb7e19ff1d3d282b8aa3ee63309ac 100644
--- a/src/arch/x86/device/mod.rs
+++ b/src/arch/x86/device/mod.rs
@@ -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();