Lines Matching refs:common

143 	void (*wakeup)(struct ath_common *common);
144 void (*restore)(struct ath_common *common);
191 static inline const struct ath_ps_ops *ath_ps_ops(struct ath_common *common) in ath_ps_ops() argument
193 return common->ps_ops; in ath_ps_ops()
196 struct sk_buff *ath_rxbuf_alloc(struct ath_common *common,
199 bool ath_is_mybeacon(struct ath_common *common, struct ieee80211_hdr *hdr);
201 void ath_hw_setbssidmask(struct ath_common *common);
202 void ath_key_delete(struct ath_common *common, struct ieee80211_key_conf *key);
203 int ath_key_config(struct ath_common *common,
207 bool ath_hw_keyreset(struct ath_common *common, u16 entry);
208 void ath_hw_cycle_counters_update(struct ath_common *common);
209 int32_t ath_hw_get_listen_time(struct ath_common *common);
212 void ath_printk(const char *level, const struct ath_common *common,
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__)
291 #define ath_dbg(common, dbg_mask, fmt, ...) \ argument
293 if ((common)->debug_mask & ATH_DBG_##dbg_mask) \
294 ath_printk(KERN_DEBUG, common, fmt, ##__VA_ARGS__); \
303 void _ath_dbg(struct ath_common *common, enum ATH_DEBUG dbg_mask, in _ath_dbg() argument
307 #define ath_dbg(common, dbg_mask, fmt, ...) \ argument
308 _ath_dbg(common, ATH_DBG_##dbg_mask, fmt, ##__VA_ARGS__)