From 192a359cb771a8d97f5d57bf2596296378a397ad Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Fri, 9 May 2025 22:53:08 -0400 Subject: kernel: ahci: Perform ATA IDENTIFY Signed-off-by: Ian Moffett --- sys/dev/ic/ahci.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'sys/dev') 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; } -- cgit v1.2.3