summaryrefslogtreecommitdiffstats
path: root/recipes-kernel
diff options
context:
space:
mode:
authorZelan Zou <zelan.zou@nxp.com>2026-03-18 17:40:04 +0800
committerZelan Zou <zelan.zou@nxp.com>2026-03-24 22:16:24 +0800
commita418f7b437c1ea88e60c760f6649f528895b307e (patch)
tree313eac3cf47ce9a6b73c9e1da42b640155821917 /recipes-kernel
parentde901c9adfc15d73c753dcc9c2e0734f9b4269f4 (diff)
downloadmeta-freescale-a418f7b437c1ea88e60c760f6649f528895b307e.tar.gz
kernel-module-nxp-wlan: Update to 6.18.2-1.0.0 latest commit
Signed-off-by: Zelan Zou <zelan.zou@nxp.com>
Diffstat (limited to 'recipes-kernel')
-rw-r--r--recipes-kernel/kernel-modules/kernel-module-nxp-wlan/mlinux-moal_main-lower-PRINTM_MMSG-log-level-to-KERN_INFO.patch33
-rw-r--r--recipes-kernel/kernel-modules/kernel-module-nxp-wlan_git.bb7
2 files changed, 3 insertions, 37 deletions
diff --git a/recipes-kernel/kernel-modules/kernel-module-nxp-wlan/mlinux-moal_main-lower-PRINTM_MMSG-log-level-to-KERN_INFO.patch b/recipes-kernel/kernel-modules/kernel-module-nxp-wlan/mlinux-moal_main-lower-PRINTM_MMSG-log-level-to-KERN_INFO.patch
deleted file mode 100644
index 72e75fd57..000000000
--- a/recipes-kernel/kernel-modules/kernel-module-nxp-wlan/mlinux-moal_main-lower-PRINTM_MMSG-log-level-to-KERN_INFO.patch
+++ /dev/null
@@ -1,33 +0,0 @@
1From f6079560bd0010a7f34bd18fec8fab4df65b22ea Mon Sep 17 00:00:00 2001
2From: Vitor Soares <vitor.soares@toradex.com>
3Date: Wed, 30 Apr 2025 15:12:06 +0100
4Subject: [PATCH] mlinux: moal_main: lower PRINTM_MMSG() log level to KERN_INFO
5
6Currently, the PRINTM_MMSG macro uses KERN_ALERT for printing messages.
7KERN_ALERT is intended for critical conditions requiring immediate
8attention (e.g., hardware failure), and using it for normal debug output
9is misleading and can clutter system logs.
10
11This patch lowers the log level to KERN_INFO, which is more appropriate
12for informational messages that are not indicative of system-critical
13failures.
14
15Upstream-Status: Inappropriate [upstream not accepting patches]
16Signed-off-by: Vitor Soares <vitor.soares@toradex.com>
17---
18 mlinux/moal_main.h | 2 +-
19 1 file changed, 1 insertion(+), 1 deletion(-)
20
21diff --git a/mlinux/moal_main.h b/mlinux/moal_main.h
22index 4328652..27121e0 100644
23--- a/mlinux/moal_main.h
24+++ b/mlinux/moal_main.h
25@@ -3529,7 +3529,7 @@ extern t_u32 drvdbg;
26 do { \
27 woal_print(MMSG, msg); \
28 if (drvdbg & MMSG) \
29- printk(KERN_ALERT msg); \
30+ printk(KERN_INFO msg); \
31 } while (0)
32
33 static inline void woal_print(t_u32 level, char *fmt, ...)
diff --git a/recipes-kernel/kernel-modules/kernel-module-nxp-wlan_git.bb b/recipes-kernel/kernel-modules/kernel-module-nxp-wlan_git.bb
index 48f1ad724..073a62ff9 100644
--- a/recipes-kernel/kernel-modules/kernel-module-nxp-wlan_git.bb
+++ b/recipes-kernel/kernel-modules/kernel-module-nxp-wlan_git.bb
@@ -10,13 +10,12 @@ RCONFLICTS:${PN} = "kernel-module-nxp89xx"
10KERNEL_MODULE_PROBECONF += "moal" 10KERNEL_MODULE_PROBECONF += "moal"
11module_conf_moal = "options moal mod_para=nxp/wifi_mod_para.conf" 11module_conf_moal = "options moal mod_para=nxp/wifi_mod_para.conf"
12 12
13SRCBRANCH = "lf-6.12.49_2.2.0"
14MRVL_SRC ?= "git://github.com/nxp-imx/mwifiex.git;protocol=https"
15SRC_URI = " \ 13SRC_URI = " \
16 ${MRVL_SRC};branch=${SRCBRANCH} \ 14 ${MRVL_SRC};branch=${SRCBRANCH} \
17 file://mlinux-moal_main-lower-PRINTM_MMSG-log-level-to-KERN_INFO.patch \
18" 15"
19SRCREV = "84ca65c9ff935d7f2999af100a82531c22c65234" 16MRVL_SRC ?= "git://github.com/nxp-imx/mwifiex.git;protocol=https"
17SRCBRANCH = "lf-6.18.2_1.0.0"
18SRCREV = "a5fe4e194bf99315e349d81d77d6dfacec70757a"
20 19
21inherit module 20inherit module
22 21