Lines Matching refs:common
146 void (*wakeup)(struct ath_common *common);
147 void (*restore)(struct ath_common *common);
194 static inline const struct ath_ps_ops *ath_ps_ops(struct ath_common *common) in ath_ps_ops() argument
196 return common->ps_ops; in ath_ps_ops()
199 struct sk_buff *ath_rxbuf_alloc(struct ath_common *common,
202 bool ath_is_mybeacon(struct ath_common *common, struct ieee80211_hdr *hdr);
204 void ath_hw_setbssidmask(struct ath_common *common);
205 void ath_key_delete(struct ath_common *common, u8 hw_key_idx);
206 int ath_key_config(struct ath_common *common,
210 bool ath_hw_keyreset(struct ath_common *common, u16 entry);
211 bool ath_hw_keysetmac(struct ath_common *common, u16 entry, const u8 *mac);
212 void ath_hw_cycle_counters_update(struct ath_common *common);
213 int32_t ath_hw_get_listen_time(struct ath_common *common);
216 void ath_printk(const char *level, const struct ath_common *common,
219 #define ath_emerg(common, fmt, ...) \ argument
220 ath_printk(KERN_EMERG, common, fmt, ##__VA_ARGS__)
221 #define ath_alert(common, fmt, ...) \ argument
222 ath_printk(KERN_ALERT, common, fmt, ##__VA_ARGS__)
223 #define ath_crit(common, fmt, ...) \ argument
224 ath_printk(KERN_CRIT, common, fmt, ##__VA_ARGS__)
225 #define ath_err(common, fmt, ...) \ argument
226 ath_printk(KERN_ERR, common, fmt, ##__VA_ARGS__)
227 #define ath_warn(common, fmt, ...) \ argument
228 ath_printk(KERN_WARNING, common, fmt, ##__VA_ARGS__)
229 #define ath_notice(common, fmt, ...) \ argument
230 ath_printk(KERN_NOTICE, common, fmt, ##__VA_ARGS__)
231 #define ath_info(common, fmt, ...) \ argument
232 ath_printk(KERN_INFO, common, fmt, ##__VA_ARGS__)
297 #define ath_dbg(common, dbg_mask, fmt, ...) \ argument
299 if ((common)->debug_mask & ATH_DBG_##dbg_mask) \
300 ath_printk(KERN_DEBUG, common, fmt, ##__VA_ARGS__); \
309 void _ath_dbg(struct ath_common *common, enum ATH_DEBUG dbg_mask, in _ath_dbg() argument
313 #define ath_dbg(common, dbg_mask, fmt, ...) \ argument
314 _ath_dbg(common, ATH_DBG_##dbg_mask, fmt, ##__VA_ARGS__)