diff options
author | Ian Moffett <ian@osmora.org> | 2025-05-09 22:53:08 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-05-09 22:53:08 -0400 |
commit | 192a359cb771a8d97f5d57bf2596296378a397ad (patch) | |
tree | 4599a6936196a428068fce5a8ae2c478f1eb7017 | |
parent | a0d52cd327ba742c8c9c00c1f95127f7eceabeee (diff) |
kernel: ahci: Perform ATA IDENTIFY
Signed-off-by: Ian Moffett <ian@osmora.org>
-rw-r--r-- | sys/dev/ic/ahci.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/dev/ic/ahci.c b/sys/dev/ic/ahci.c index a9fa8c3..7a7480d 100644 --- a/sys/dev/ic/ahci.c +++ b/sys/dev/ic/ahci.c @@ -501,6 +501,8 @@ ahci_init_port(struct ahci_hba *hba, uint32_t portno) pr_trace("failed to start port %d\n", portno); return error; } + + ahci_identify(hba, port); return 0; } |