From 0aa38ac4a4f172909d0812aec129b084f51b8f43 Mon Sep 17 00:00:00 2001 From: Drew Galbraith Date: Mon, 19 Jun 2023 21:51:53 -0700 Subject: [PATCH] [denali] Make denali less noisy on interrupt --- sys/denali/ahci/ahci_device.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/sys/denali/ahci/ahci_device.cpp b/sys/denali/ahci/ahci_device.cpp index 443107f..f9c42ee 100644 --- a/sys/denali/ahci/ahci_device.cpp +++ b/sys/denali/ahci/ahci_device.cpp @@ -76,9 +76,6 @@ void AhciDevice::HandleIrq() { port_struct_->interrupt_status = int_status; uint32_t commands_finished = commands_issued_ & ~port_struct_->command_issue; - dbgln("finished %x", commands_finished); - dbgln("status %x", int_status); - dbgln("Issued %x, %x", commands_issued_, port_struct_->command_issue); // FIXME: Pass error codes to the callback. for (uint64_t i = 0; i < 32; i++) {