Lines Matching refs:common
181 struct sk_buff *ath_rxbuf_alloc(struct ath_common *common,
184 bool ath_is_mybeacon(struct ath_common *common, struct ieee80211_hdr *hdr);
186 void ath_hw_setbssidmask(struct ath_common *common);
187 void ath_key_delete(struct ath_common *common, struct ieee80211_key_conf *key);
188 int ath_key_config(struct ath_common *common,
192 bool ath_hw_keyreset(struct ath_common *common, u16 entry);
193 void ath_hw_cycle_counters_update(struct ath_common *common);
194 int32_t ath_hw_get_listen_time(struct ath_common *common);
197 void ath_printk(const char *level, const struct ath_common *common,
200 #define ath_emerg(common, fmt, ...) \ argument
201 ath_printk(KERN_EMERG, common, fmt, ##__VA_ARGS__)
202 #define ath_alert(common, fmt, ...) \ argument
203 ath_printk(KERN_ALERT, common, fmt, ##__VA_ARGS__)
204 #define ath_crit(common, fmt, ...) \ argument
205 ath_printk(KERN_CRIT, common, fmt, ##__VA_ARGS__)
206 #define ath_err(common, fmt, ...) \ argument
207 ath_printk(KERN_ERR, common, fmt, ##__VA_ARGS__)
208 #define ath_warn(common, fmt, ...) \ argument
209 ath_printk(KERN_WARNING, common, fmt, ##__VA_ARGS__)
210 #define ath_notice(common, fmt, ...) \ argument
211 ath_printk(KERN_NOTICE, common, fmt, ##__VA_ARGS__)
212 #define ath_info(common, fmt, ...) \ argument
213 ath_printk(KERN_INFO, common, fmt, ##__VA_ARGS__)
276 #define ath_dbg(common, dbg_mask, fmt, ...) \ argument
278 if ((common)->debug_mask & ATH_DBG_##dbg_mask) \
279 ath_printk(KERN_DEBUG, common, fmt, ##__VA_ARGS__); \
288 void _ath_dbg(struct ath_common *common, enum ATH_DEBUG dbg_mask, in _ath_dbg() argument
292 #define ath_dbg(common, dbg_mask, fmt, ...) \ argument
293 _ath_dbg(common, ATH_DBG_##dbg_mask, fmt, ##__VA_ARGS__)