On 2-2-2017 22:33, Rafał Miłecki wrote: > From: Rafał Miłecki <rafal@xxxxxxxxxx> > > Now we always have __brcmf_err function we can do perfectly fine with > just one macro. Acked-by: Arend van Spriel <arend.vanspriel@xxxxxxxxxxxx> > Signed-off-by: Rafał Miłecki <rafal@xxxxxxxxxx> > --- > V3: Add this (new) patch > --- > drivers/net/wireless/broadcom/brcm80211/brcmfmac/debug.h | 14 +++++--------- > 1 file changed, 5 insertions(+), 9 deletions(-) > > diff --git a/drivers/net/wireless/broadcom/brcm80211/brcmfmac/debug.h b/drivers/net/wireless/broadcom/brcm80211/brcmfmac/debug.h > index 441a6661eac0..066126123e96 100644 > --- a/drivers/net/wireless/broadcom/brcm80211/brcmfmac/debug.h > +++ b/drivers/net/wireless/broadcom/brcm80211/brcmfmac/debug.h > @@ -47,20 +47,16 @@ > > __printf(2, 3) > void __brcmf_err(const char *func, const char *fmt, ...); > -#ifndef CONFIG_BRCM_TRACING > -/* Macro for error messages. net_ratelimit() is used when driver > - * debugging is not selected. When debugging the driver error > - * messages are as important as other tracing or even more so. > +/* Macro for error messages. When debugging / tracing the driver all error > + * messages are important to us. > */ > #define brcmf_err(fmt, ...) \ > do { \ > - if (IS_ENABLED(CONFIG_BRCMDBG) || net_ratelimit()) \ > + if (IS_ENABLED(CONFIG_BRCMDBG) || \ > + IS_ENABLED(CONFIG_BRCM_TRACING) || \ > + net_ratelimit()) \ > __brcmf_err(__func__, fmt, ##__VA_ARGS__); \ > } while (0) > -#else > -#define brcmf_err(fmt, ...) \ > - __brcmf_err(__func__, fmt, ##__VA_ARGS__) > -#endif > > #if defined(DEBUG) || defined(CONFIG_BRCM_TRACING) > __printf(3, 4) >