From 4c3e6fcb0da7ef0b83cf5a66bad123b65abda060 Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Wed, 14 May 2025 01:14:31 -0400 Subject: kernel: ahci: Remove debug log statement Signed-off-by: Ian Moffett --- sys/dev/ic/ahci.c | 1 - 1 file changed, 1 deletion(-) (limited to 'sys') 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; } -- cgit v1.2.3