From d7e2dc844666cf3f488fd69409640f1f8a9844d4 Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Fri, 21 Feb 2025 13:15:10 -0500 Subject: kernel: Update kernel log style Kernel logs must now all be lowercase for consistency. A new style called Peripheral Description Notation (PDN) has also been introduced to describe devices. Signed-off-by: Ian Moffett --- sys/dev/ic/ahci.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'sys/dev/ic/ahci.c') diff --git a/sys/dev/ic/ahci.c b/sys/dev/ic/ahci.c index ec7e68a..5c85013 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 \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; } -- cgit v1.2.3