summaryrefslogtreecommitdiff
path: root/sys/dev/ic/ahci.c
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2025-02-21 13:42:39 -0500
committerIan Moffett <ian@osmora.org>2025-02-21 13:42:39 -0500
commit6ceef43179c70852f001f1205ff92ebba4d0d4d7 (patch)
tree7b5741067bfd89a78750fa05456bd95274317543 /sys/dev/ic/ahci.c
parentd20d25df529f6e8949fd12afe281dea65b22f17f (diff)
parente3099277531b7b1be0aa6656a3eab3960ab6ede0 (diff)
Merge branch 'expt'main
Hyra v1.4
Diffstat (limited to 'sys/dev/ic/ahci.c')
-rw-r--r--sys/dev/ic/ahci.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/dev/ic/ahci.c b/sys/dev/ic/ahci.c
index f41233c..b483e7a 100644
--- a/sys/dev/ic/ahci.c
+++ b/sys/dev/ic/ahci.c
@@ -131,7 +131,7 @@ ahci_hba_init(struct ahci_hba *hba)
return error;
}
- pr_trace("Successfully performed a hard reset.\n");
+ pr_trace("successfully performed a hard reset\n");
/*
* The HBA provides backwards compatibility with
@@ -166,25 +166,25 @@ ahci_init(void)
* devices to the PCI bus, acting as an interface
* between them.
*/
- pr_trace("Detected AHCI HBA (%x:%x.%x, slot=%d)\n",
+ pr_trace("IDE storage ctrl <hba? at pci%d:%x.%x.%d>\n",
ahci_dev->bus, ahci_dev->device_id, ahci_dev->func,
ahci_dev->slot);
/* Try to request a general purpose timer */
if (req_timer(TIMER_GP, &tmr) != TMRR_SUCCESS) {
- pr_error("Failed to fetch general purpose timer\n");
+ pr_error("failed to fetch general purpose timer\n");
return -ENODEV;
}
/* Ensure it has get_time_usec() */
if (tmr.get_time_usec == NULL) {
- pr_error("General purpose timer has no get_time_usec()\n");
+ pr_error("general purpose timer has no get_time_usec()\n");
return -ENODEV;
}
/* We also need msleep() */
if (tmr.msleep == NULL) {
- pr_error("General purpose timer has no msleep()\n");
+ pr_error("general purpose timer has no msleep()\n");
return -ENODEV;
}