diff --git a/kernel/src/drivers/hpet.cpp b/kernel/src/drivers/hpet.cpp index f4933eeb..061dad33 100644 --- a/kernel/src/drivers/hpet.cpp +++ b/kernel/src/drivers/hpet.cpp @@ -93,13 +93,6 @@ void hpet::init(){ } bool hpet::install(){ - // For now, we disable HPET on bochs, because it does not work - // normally - if(is_bochs_e9()){ - logging::logf(logging::log_level::TRACE, "hpet: Detected bochs, disabling HPET\n"); - return 9; - } - // Find the HPET table auto status = AcpiGetTable(ACPI_SIG_HPET, 0, reinterpret_cast(&hpet_table)); if (ACPI_FAILURE(status)){