mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-06 01:49:46 +00:00
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>
This commit is contained in:
@@ -67,7 +67,12 @@ void __brcmf_err(struct brcmf_bus *bus, const char *func, const char *fmt, ...);
|
||||
#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, ...);
|
||||
|
||||
Reference in New Issue
Block a user