mirror of
https://github.com/Ysurac/openmptcprouter.git
synced 2025-02-15 04:42:02 +00:00
32 lines
1.2 KiB
Diff
32 lines
1.2 KiB
Diff
From 329db26ea3d7c8fad3c8c73b662c8ea8e00f2fb3 Mon Sep 17 00:00:00 2001
|
|
From: Phil Elwell <phil@raspberrypi.com>
|
|
Date: Tue, 2 Nov 2021 11:13:42 +0000
|
|
Subject: [PATCH] brcmfmac: Don't promote INFO logging to ERR
|
|
|
|
An unwanted side effect of enabling the BRCMDBG config setting is
|
|
redefining brcmf_info to be brcmf_err. This can be alarming to users
|
|
and makes it harder to spot real errors, so don't do it.
|
|
|
|
See: https://github.com/raspberrypi/linux/issues/4663
|
|
|
|
Signed-off-by: Phil Elwell <phil@raspberrypi.com>
|
|
---
|
|
drivers/net/wireless/broadcom/brcm80211/brcmfmac/debug.h | 7 ++++++-
|
|
1 file changed, 6 insertions(+), 1 deletion(-)
|
|
|
|
--- a/drivers/net/wireless/broadcom/brcm80211/brcmfmac/debug.h
|
|
+++ b/drivers/net/wireless/broadcom/brcm80211/brcmfmac/debug.h
|
|
@@ -67,7 +67,12 @@ void __brcmf_err(struct brcmf_bus *bus,
|
|
#if defined(DEBUG) || defined(CONFIG_BRCM_TRACING)
|
|
|
|
/* For debug/tracing purposes treat info messages as errors */
|
|
-#define brcmf_info brcmf_err
|
|
+// #define brcmf_info brcmf_err
|
|
+
|
|
+#define brcmf_info(fmt, ...) \
|
|
+ do { \
|
|
+ pr_info("%s: " fmt, __func__, ##__VA_ARGS__); \
|
|
+ } while (0)
|
|
|
|
__printf(3, 4)
|
|
void __brcmf_dbg(u32 level, const char *func, const char *fmt, ...);
|