From f044ace27d00316fdfd7f30d04a0779478330bb7 Mon Sep 17 00:00:00 2001 From: "jiabin.chen" Date: Wed, 7 Jan 2026 14:14:25 +0800 Subject: [PATCH] wifi: clean dhd static buf printk [1/1] PD#SWPL-247769 Problem: use printk too more Solution: pr_err -> pr_debug Verify: local Change-Id: If0d6b88187ec88dd65d428f588268ed5e7b43eb8 Signed-off-by: jiabin.chen --- drivers/wireless/wifi/dhd_static_buf.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/wireless/wifi/dhd_static_buf.c b/drivers/wireless/wifi/dhd_static_buf.c index fbba42b90..517ad9876 100644 --- a/drivers/wireless/wifi/dhd_static_buf.c +++ b/drivers/wireless/wifi/dhd_static_buf.c @@ -24,19 +24,19 @@ uint static_msg_level = STATIC_ERROR_LEVEL | STATIC_MSG_LEVEL; #define DHD_STATIC_MSG(x, args...) \ do { \ if (static_msg_level & STATIC_MSG_LEVEL) { \ - pr_err("[dhd] STATIC-MSG) %s : " x, __func__, ## args); \ + pr_debug("[dhd] STATIC-MSG) %s : " x, __func__, ## args); \ } \ } while (0) #define DHD_STATIC_ERROR(x, args...) \ do { \ if (static_msg_level & STATIC_ERROR_LEVEL) { \ - pr_err("[dhd] STATIC-ERROR) %s : " x, __func__, ## args); \ + pr_debug("[dhd] STATIC-ERROR) : " x, ## args); \ } \ } while (0) #define DHD_STATIC_TRACE(x, args...) \ do { \ if (static_msg_level & STATIC_TRACE_LEVEL) { \ - pr_err("[dhd] STATIC-TRACE) %s : " x, __func__, ## args); \ + pr_debug("[dhd] STATIC-TRACE) %s : " x, __func__, ## args); \ } \ } while (0)