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/include/lib/assert.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys/include/lib') diff --git a/sys/include/lib/assert.h b/sys/include/lib/assert.h index d35cf09..a34a14f 100644 --- a/sys/include/lib/assert.h +++ b/sys/include/lib/assert.h @@ -35,7 +35,7 @@ #define __assert(condition) \ if ((uintptr_t)(condition) == 0) { \ - panic("Assert \"%s\" failed (%s() at %s:%d)\n", #condition, \ + panic("assert \"%s\" failed (%s() at %s:%d)\n", #condition, \ __func__, __FILE__, __LINE__); \ } -- cgit v1.2.3