Lines Matching full:common

163 struct sk_buff *ath_rxbuf_alloc(struct ath_common *common,
167 void ath_hw_setbssidmask(struct ath_common *common);
168 void ath_key_delete(struct ath_common *common, struct ieee80211_key_conf *key);
169 int ath_key_config(struct ath_common *common,
173 bool ath_hw_keyreset(struct ath_common *common, u16 entry);
174 void ath_hw_cycle_counters_update(struct ath_common *common);
175 int32_t ath_hw_get_listen_time(struct ath_common *common);
179 #define _ath_printk(level, common, fmt, ...) \ argument
181 __always_unused struct ath_common *unused = common; \
185 #define ath_emerg(common, fmt, ...) \ argument
186 _ath_printk(KERN_EMERG, common, fmt, ##__VA_ARGS__)
187 #define ath_alert(common, fmt, ...) \ argument
188 _ath_printk(KERN_ALERT, common, fmt, ##__VA_ARGS__)
189 #define ath_crit(common, fmt, ...) \ argument
190 _ath_printk(KERN_CRIT, common, fmt, ##__VA_ARGS__)
191 #define ath_err(common, fmt, ...) \ argument
192 _ath_printk(KERN_ERR, common, fmt, ##__VA_ARGS__)
193 #define ath_warn(common, fmt, ...) \ argument
194 _ath_printk(KERN_WARNING, common, fmt, ##__VA_ARGS__)
195 #define ath_notice(common, fmt, ...) \ argument
196 _ath_printk(KERN_NOTICE, common, fmt, ##__VA_ARGS__)
197 #define ath_info(common, fmt, ...) \ argument
198 _ath_printk(KERN_INFO, common, fmt, ##__VA_ARGS__)
256 #define ath_dbg(common, dbg_mask, fmt, ...) \ argument
258 if ((common)->debug_mask & ATH_DBG_##dbg_mask) \
259 _ath_printk(KERN_DEBUG, common, fmt, ##__VA_ARGS__); \
268 void _ath_dbg(struct ath_common *common, enum ATH_DEBUG dbg_mask, in _ath_dbg() argument
272 #define ath_dbg(common, dbg_mask, fmt, ...) \ argument
273 _ath_dbg(common, ATH_DBG_##dbg_mask, fmt, ##__VA_ARGS__)