mirror of
git://git.yoctoproject.org/meta-freescale.git
synced 2025-07-19 21:09:04 +02:00

This commit add the following source revisions: 0396cfb Makefile: remove script related setting to avoid build break a8d5496 mxm_wifiex: update to mxm6x18505.p14 release b952ebf mxm_wifiex: update to mxm6x18505.p12 release 7a182ab mxm_wifiex: update to mxm6x18505.p10 release Signed-off-by: Rodrigo M. Duarte <rodrigo.duarte@ossystems.com.br>
34 lines
1.4 KiB
Diff
34 lines
1.4 KiB
Diff
From 9e2200debd7ac4fa8dac4b01949b5bedbc52fe2b Mon Sep 17 00:00:00 2001
|
|
From: Vitor Soares <vitor.soares@toradex.com>
|
|
Date: Wed, 30 Apr 2025 15:12:06 +0100
|
|
Subject: [PATCH] mlinux: moal_main: lower PRINTM_MMSG() log level to KERN_INFO
|
|
|
|
Currently, the PRINTM_MMSG macro uses KERN_ALERT for printing messages.
|
|
KERN_ALERT is intended for critical conditions requiring immediate
|
|
attention (e.g., hardware failure), and using it for normal debug output
|
|
is misleading and can clutter system logs.
|
|
|
|
This patch lowers the log level to KERN_INFO, which is more appropriate
|
|
for informational messages that are not indicative of system-critical
|
|
failures.
|
|
|
|
Upstream-Status: Inappropriate [upstream not accepting patches]
|
|
Signed-off-by: Vitor Soares <vitor.soares@toradex.com>
|
|
---
|
|
mlinux/moal_main.h | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/mlinux/moal_main.h b/mlinux/moal_main.h
|
|
index 4328652..27121e0 100644
|
|
--- a/mlinux/moal_main.h
|
|
+++ b/mlinux/moal_main.h
|
|
@@ -3529,7 +3529,7 @@ extern t_u32 drvdbg;
|
|
do { \
|
|
woal_print(MMSG, msg); \
|
|
if (drvdbg & MMSG) \
|
|
- printk(KERN_ALERT msg); \
|
|
+ printk(KERN_INFO msg); \
|
|
} while (0)
|
|
|
|
static inline void woal_print(t_u32 level, char *fmt, ...)
|