summaryrefslogtreecommitdiff
path: root/sys/dev/ic
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2025-05-26 01:38:21 -0400
committerIan Moffett <ian@osmora.org>2025-05-26 01:38:47 -0400
commit1c9c2ae74825932e4a1ec8330513b627bfc12592 (patch)
tree9dfab3f20f51ca4a387e21cc35dc4784a7f89d41 /sys/dev/ic
parent3ba53262ba815ca94572b0c23e2bc0eed83d5cbb (diff)
kernel: ahci: Remove useless line
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/dev/ic')
-rw-r--r--sys/dev/ic/ahci.c1
1 files changed, 0 insertions, 1 deletions
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);