diff --git a/sys/denali/ahci/ahci_driver.cpp b/sys/denali/ahci/ahci_driver.cpp index 7c29288..998f59b 100644 --- a/sys/denali/ahci/ahci_driver.cpp +++ b/sys/denali/ahci/ahci_driver.cpp @@ -143,7 +143,6 @@ void AhciDriver::InterruptLoop() { for (uint64_t i = 0; i < 32; i++) { if (devices_[i] != nullptr && devices_[i]->IsInit() && (ahci_hba_->interrupt_status & (1 << i))) { - dbgln("Interrupt for {}", i); devices_[i]->HandleIrq(); ahci_hba_->interrupt_status &= ~(1 << i); } diff --git a/zion/interrupt/interrupt.cpp b/zion/interrupt/interrupt.cpp index b247600..b67f26e 100644 --- a/zion/interrupt/interrupt.cpp +++ b/zion/interrupt/interrupt.cpp @@ -154,7 +154,6 @@ extern "C" void interrupt_apic_timer(InterruptFrame*) { glcr::RefPtr pci1_port; extern "C" void isr_pci1(); extern "C" void interrupt_pci1(InterruptFrame*) { - dbgln("Interrupt PCI line 1"); pci1_port->Send({}); gApic->SignalEOI(); }