Lines Matching refs:fmt
43 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
51 #define brcmf_err(fmt, ...) pr_err("%s: " fmt, __func__, ##__VA_ARGS__)
53 #define brcmf_err(fmt, ...) \
56 pr_err("%s: " fmt, __func__, ##__VA_ARGS__); \
61 void __brcmf_err(const char *func, const char *fmt, ...);
62 #define brcmf_err(fmt, ...) \
63 __brcmf_err(__func__, fmt, ##__VA_ARGS__)
68 void __brcmf_dbg(u32 level, const char *func, const char *fmt, ...);
69 #define brcmf_dbg(level, fmt, ...) \
72 fmt, ##__VA_ARGS__); \
84 #define brcmf_dbg(level, fmt, ...) no_printk(fmt, ##__VA_ARGS__)
96 #define brcmf_dbg_hex_dump(test, data, len, fmt, ...) \
100 brcmu_dbg_hex_dump(data, len, fmt, ##__VA_ARGS__); \