Lines Matching refs:txhdr
784 struct p54_tx_data *txhdr; in p54_tx_80211() local
803 padding = (unsigned long)(skb->data - (sizeof(*hdr) + sizeof(*txhdr))) & 3; in p54_tx_80211()
820 txhdr = skb_push(skb, sizeof(*txhdr) + padding); in p54_tx_80211()
834 memset(&txhdr->rateset, 0, sizeof(txhdr->rateset)); in p54_tx_80211()
891 txhdr->rateset[ridx] = rate; in p54_tx_80211()
902 txhdr->rts_rate_idx = 0; in p54_tx_80211()
904 txhdr->key_type = p54_convert_algo(info->control.hw_key->cipher); in p54_tx_80211()
905 txhdr->key_len = min((u8)16, info->control.hw_key->keylen); in p54_tx_80211()
906 memcpy(txhdr->key, info->control.hw_key->key, txhdr->key_len); in p54_tx_80211()
918 txhdr->key_type = 0; in p54_tx_80211()
919 txhdr->key_len = 0; in p54_tx_80211()
921 txhdr->crypt_offset = crypt_offset; in p54_tx_80211()
922 txhdr->hw_queue = queue; in p54_tx_80211()
923 txhdr->backlog = priv->tx_stats[queue].len - 1; in p54_tx_80211()
924 memset(txhdr->durations, 0, sizeof(txhdr->durations)); in p54_tx_80211()
925 txhdr->tx_antenna = 2 & priv->tx_diversity_mask; in p54_tx_80211()
927 txhdr->longbow.cts_rate = cts_rate; in p54_tx_80211()
928 txhdr->longbow.output_power = cpu_to_le16(priv->output_power); in p54_tx_80211()
930 txhdr->normal.output_power = priv->output_power; in p54_tx_80211()
931 txhdr->normal.cts_rate = cts_rate; in p54_tx_80211()
934 txhdr->align[0] = padding; in p54_tx_80211()