diff options
author | Ian Moffett <ian@osmora.org> | 2025-05-09 22:13:41 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-05-09 22:13:41 -0400 |
commit | 310af38f1324c57ef5a072b27c91110cd4ec4a3a (patch) | |
tree | 9508479ab8ec7fd6ccdc5e869e17cfdabff414c3 /sys/dev | |
parent | 260316209d0c3b781d1ae483372958434da70689 (diff) |
kernel: ahci: Detect staggered spin up
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/ic/ahci.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/dev/ic/ahci.c b/sys/dev/ic/ahci.c index 4500a29..3142193 100644 --- a/sys/dev/ic/ahci.c +++ b/sys/dev/ic/ahci.c @@ -317,6 +317,7 @@ ahci_hba_init(struct ahci_hba *hba) hba->nslots = AHCI_CAP_NCS(cap); hba->ems = AHCI_CAP_EMS(cap); hba->sal = AHCI_CAP_SAL(cap); + hba->sss = AHCI_CAP_SSS(cap); /* * The HBA provides backwards compatibility with |