Lines Matching refs:txhdr
788 struct p54_tx_data *txhdr; in p54_tx_80211() local
807 padding = (unsigned long)(skb->data - (sizeof(*hdr) + sizeof(*txhdr))) & 3; in p54_tx_80211()
824 txhdr = skb_push(skb, sizeof(*txhdr) + padding); in p54_tx_80211()
838 memset(&txhdr->rateset, 0, sizeof(txhdr->rateset)); in p54_tx_80211()
895 txhdr->rateset[ridx] = rate; in p54_tx_80211()
906 txhdr->rts_rate_idx = 0; in p54_tx_80211()
908 txhdr->key_type = p54_convert_algo(info->control.hw_key->cipher); in p54_tx_80211()
909 txhdr->key_len = min((u8)16, info->control.hw_key->keylen); in p54_tx_80211()
910 memcpy(txhdr->key, info->control.hw_key->key, txhdr->key_len); in p54_tx_80211()
922 txhdr->key_type = 0; in p54_tx_80211()
923 txhdr->key_len = 0; in p54_tx_80211()
925 txhdr->crypt_offset = crypt_offset; in p54_tx_80211()
926 txhdr->hw_queue = queue; in p54_tx_80211()
927 txhdr->backlog = priv->tx_stats[queue].len - 1; in p54_tx_80211()
928 memset(txhdr->durations, 0, sizeof(txhdr->durations)); in p54_tx_80211()
929 txhdr->tx_antenna = 2 & priv->tx_diversity_mask; in p54_tx_80211()
931 txhdr->longbow.cts_rate = cts_rate; in p54_tx_80211()
932 txhdr->longbow.output_power = cpu_to_le16(priv->output_power); in p54_tx_80211()
934 txhdr->normal.output_power = priv->output_power; in p54_tx_80211()
935 txhdr->normal.cts_rate = cts_rate; in p54_tx_80211()
938 txhdr->align[0] = padding; in p54_tx_80211()