diff options
author | Ian Moffett <ian@osmora.org> | 2025-05-26 01:38:21 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-05-26 01:38:47 -0400 |
commit | 1c9c2ae74825932e4a1ec8330513b627bfc12592 (patch) | |
tree | 9dfab3f20f51ca4a387e21cc35dc4784a7f89d41 /sys/dev/ic | |
parent | 3ba53262ba815ca94572b0c23e2bc0eed83d5cbb (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.c | 1 |
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); |