• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/drivers/net/wireless/b43/

Lines Matching defs:txhdr

189 	struct b43_txhdr *txhdr = (struct b43_txhdr *)_txhdr;
205 memset(txhdr, 0, sizeof(*txhdr));
215 txhdr->phy_rate = b43_plcp_get_ratecode_ofdm(rate);
217 txhdr->phy_rate = b43_plcp_get_ratecode_cck(rate);
218 txhdr->mac_frame_ctl = wlhdr->frame_control;
219 memcpy(txhdr->tx_receiver, wlhdr->addr1, 6);
228 txhdr->dur_fb = wlhdr->duration_id;
230 txhdr->dur_fb = ieee80211_generic_frame_duration(
270 /* phase1key is in host endian. Copy to little-endian txhdr->iv. */
272 txhdr->iv[i * 2 + 0] = phase1key[i];
273 txhdr->iv[i * 2 + 1] = phase1key[i] >> 8;
276 memcpy(txhdr->iv + 10, ((u8 *) wlhdr) + wlhdr_len, 3);
279 ARRAY_SIZE(txhdr->iv));
280 memcpy(txhdr->iv, ((u8 *) wlhdr) + wlhdr_len, iv_len);
284 b43_generate_plcp_hdr((struct b43_plcp_hdr4 *)(&txhdr->old_format.plcp),
287 b43_generate_plcp_hdr((struct b43_plcp_hdr4 *)(&txhdr->new_format.plcp),
290 b43_generate_plcp_hdr((struct b43_plcp_hdr4 *)(&txhdr->plcp_fb),
303 txhdr->chan_radio_code = phy->channel;
379 (txhdr->old_format.rts_frame);
382 (txhdr->new_format.rts_frame);
394 (txhdr->old_format.rts_frame);
397 (txhdr->new_format.rts_frame);
409 plcp = &txhdr->old_format.rts_plcp;
411 plcp = &txhdr->new_format.rts_plcp;
414 plcp = &txhdr->rts_plcp_fb;
420 (&txhdr->old_format.rts_frame);
423 (&txhdr->new_format.rts_frame);
425 txhdr->rts_dur_fb = hdr->duration_id;
429 txhdr->phy_rate_rts =
433 txhdr->phy_rate_rts =
444 txhdr->old_format.cookie = cpu_to_le16(cookie);
446 txhdr->new_format.cookie = cpu_to_le16(cookie);
449 txhdr->mac_ctl = cpu_to_le32(mac_ctl);
450 txhdr->phy_ctl = cpu_to_le16(phy_ctl);
451 txhdr->extra_ft = extra_ft;