From a3dffec58f315d8c3c4625b1072f81a15dd60cd0 Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Thu, 8 May 2025 02:00:27 -0400 Subject: kernel: ahci: Cleanup port count log Signed-off-by: Ian Moffett --- sys/dev/ic/ahci.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys/dev/ic/ahci.c') diff --git a/sys/dev/ic/ahci.c b/sys/dev/ic/ahci.c index f1603c0..f8996fa 100644 --- a/sys/dev/ic/ahci.c +++ b/sys/dev/ic/ahci.c @@ -236,7 +236,7 @@ ahci_hba_init(struct ahci_hba *hba) */ pi = mmio_read32(&abar->pi); hba->nports = popcnt(pi); - pr_trace("hba implements %d ports\n", hba->nports); + pr_trace("hba implements %d port(s)\n", hba->nports); if ((error = ahci_hba_scan(hba)) != 0) { return error; -- cgit v1.2.3