Lines Matching refs:fmt
213 const char *fmt, ...);
215 #define ath_emerg(common, fmt, ...) \ argument
216 ath_printk(KERN_EMERG, common, fmt, ##__VA_ARGS__)
217 #define ath_alert(common, fmt, ...) \ argument
218 ath_printk(KERN_ALERT, common, fmt, ##__VA_ARGS__)
219 #define ath_crit(common, fmt, ...) \ argument
220 ath_printk(KERN_CRIT, common, fmt, ##__VA_ARGS__)
221 #define ath_err(common, fmt, ...) \ argument
222 ath_printk(KERN_ERR, common, fmt, ##__VA_ARGS__)
223 #define ath_warn(common, fmt, ...) \ argument
224 ath_printk(KERN_WARNING, common, fmt, ##__VA_ARGS__)
225 #define ath_notice(common, fmt, ...) \ argument
226 ath_printk(KERN_NOTICE, common, fmt, ##__VA_ARGS__)
227 #define ath_info(common, fmt, ...) \ argument
228 ath_printk(KERN_INFO, common, fmt, ##__VA_ARGS__)
293 #define ath_dbg(common, dbg_mask, fmt, ...) \ argument
296 ath_printk(KERN_DEBUG, common, fmt, ##__VA_ARGS__); \
306 const char *fmt, ...) in _ath_dbg() argument
309 #define ath_dbg(common, dbg_mask, fmt, ...) \ argument
310 _ath_dbg(common, ATH_DBG_##dbg_mask, fmt, ##__VA_ARGS__)