Lines Matching defs:common
29 struct sk_buff *ath_rxbuf_alloc(struct ath_common *common,
49 skb = __dev_alloc_skb(len + common->cachelsz - 1, gfp_mask);
51 off = ((unsigned long) skb->data) % common->cachelsz;
53 skb_reserve(skb, common->cachelsz - off);
63 bool ath_is_mybeacon(struct ath_common *common, struct ieee80211_hdr *hdr)
66 !is_zero_ether_addr(common->curbssid) &&
67 ether_addr_equal_64bits(hdr->addr3, common->curbssid);
71 void ath_printk(const char *level, const struct ath_common* common,
82 if (common && common->hw && common->hw->wiphy) {
84 level, wiphy_name(common->hw->wiphy), &vaf);
85 trace_ath_log(common->hw->wiphy, &vaf);