diff options
author | Ian Moffett <ian@osmora.org> | 2025-05-08 02:00:27 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-05-08 02:00:27 -0400 |
commit | a3dffec58f315d8c3c4625b1072f81a15dd60cd0 (patch) | |
tree | df3d9bd874d94b3ae77cd0a05b7d6b1b2fb2b1ac | |
parent | 9f9d68b00dda30374ce45c6e3250eedaaca63c3a (diff) |
kernel: ahci: Cleanup port count log
Signed-off-by: Ian Moffett <ian@osmora.org>
-rw-r--r-- | sys/dev/ic/ahci.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |