Lines Matching refs:fmt
44 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt argument
52 #define brcmf_err(fmt, ...) pr_err("%s: " fmt, __func__, ##__VA_ARGS__) argument
54 #define brcmf_err(fmt, ...) \ argument
57 pr_err("%s: " fmt, __func__, ##__VA_ARGS__); \
62 void __brcmf_err(const char *func, const char *fmt, ...);
63 #define brcmf_err(fmt, ...) \ argument
64 __brcmf_err(__func__, fmt, ##__VA_ARGS__)
69 void __brcmf_dbg(u32 level, const char *func, const char *fmt, ...);
70 #define brcmf_dbg(level, fmt, ...) \ argument
73 fmt, ##__VA_ARGS__); \
86 #define brcmf_dbg(level, fmt, ...) no_printk(fmt, ##__VA_ARGS__) argument
99 #define brcmf_dbg_hex_dump(test, data, len, fmt, ...) \ argument
103 brcmu_dbg_hex_dump(data, len, fmt, ##__VA_ARGS__); \