From 1c9c2ae74825932e4a1ec8330513b627bfc12592 Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Mon, 26 May 2025 01:38:21 -0400 Subject: kernel: ahci: Remove useless line Signed-off-by: Ian Moffett --- sys/dev/ic/ahci.c | 1 - 1 file changed, 1 deletion(-) diff --git a/sys/dev/ic/ahci.c b/sys/dev/ic/ahci.c index 23c68a2..e59953e 100644 --- a/sys/dev/ic/ahci.c +++ b/sys/dev/ic/ahci.c @@ -104,7 +104,6 @@ ahci_alloc_cmdslot(struct ahci_hba *hba, struct hba_port *port) { uint32_t slotlist; - slotlist = port->ci | port->sact; slotlist = mmio_read32(&port->ci); slotlist |= mmio_read32(&port->sact); -- cgit v1.2.3