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/vm/vm_init.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys/vm/vm_init.c') diff --git a/sys/vm/vm_init.c b/sys/vm/vm_init.c index 8f40e9d..2846a69 100644 --- a/sys/vm/vm_init.c +++ b/sys/vm/vm_init.c @@ -61,7 +61,7 @@ vm_init(void) vm_ctx.dynalloc_pool_sz = DYNALLOC_POOL_SZ; vm_ctx.dynalloc_pool_pa = vm_alloc_frame(DYNALLOC_POOL_PAGES); if (vm_ctx.dynalloc_pool_pa == 0) { - panic("Failed to allocate dynamic pool\n"); + panic("failed to allocate dynamic pool\n"); } pool = PHYS_TO_VIRT(vm_ctx.dynalloc_pool_pa); -- cgit v1.2.3