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/arch/amd64/pci/pci_resource.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys/arch/amd64/pci') diff --git a/sys/arch/amd64/pci/pci_resource.c b/sys/arch/amd64/pci/pci_resource.c index 5ca597b..92d8a5f 100644 --- a/sys/arch/amd64/pci/pci_resource.c +++ b/sys/arch/amd64/pci/pci_resource.c @@ -73,7 +73,7 @@ pcir_enable_dma(struct bus_resource *brp, void *devp) * is disabled. */ if (!ISSET(brp->sem, BUS_DMA)) { - pr_trace("Bus marked non DMA capable, DMA not enabled\n"); + pr_trace("bus marked non DMA capable, DMA not enabled\n"); return -EACCES; } -- cgit v1.2.3