diff options
author | Ian Moffett <ian@osmora.org> | 2025-05-14 01:14:31 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-05-14 10:46:05 -0400 |
commit | 4c3e6fcb0da7ef0b83cf5a66bad123b65abda060 (patch) | |
tree | 47c94132ed01bc93ae9fdd8b5bc0f17cdea0af18 | |
parent | d8c27b47190c54e508550010f1e9e74d734532e1 (diff) |
kernel: ahci: Remove debug log statementexpt
Signed-off-by: Ian Moffett <ian@osmora.org>
-rw-r--r-- | sys/dev/ic/ahci.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sys/dev/ic/ahci.c b/sys/dev/ic/ahci.c index 8b72cde..53515da 100644 --- a/sys/dev/ic/ahci.c +++ b/sys/dev/ic/ahci.c @@ -535,7 +535,6 @@ ahci_sata_rw(struct ahci_hba *hba, struct hba_port *port, struct sio_txn *sio, fis->countl = sio->len & 0xFF; fis->counth = (sio->len >> 8) & 0xFF; - pr_trace("SUBMIT: RIGHT!\n"); if ((status = ahci_submit_cmd(hba, port, cmdslot)) != 0) { return status; } |