Lines Matching refs:hd_info

1487 			      struct brcmf_sdio_hdrinfo *hd_info)  in brcmf_sdio_hdpack()  argument
1492 brcmf_sdio_update_hwhdr(header, hd_info->len); in brcmf_sdio_hdpack()
1496 hdrval = (hd_info->len - hdr_offset) | (hd_info->lastfrm << 24); in brcmf_sdio_hdpack()
1498 hdrval = (u16)hd_info->tail_pad << 16; in brcmf_sdio_hdpack()
1503 hdrval = hd_info->seq_num; in brcmf_sdio_hdpack()
1504 hdrval |= (hd_info->channel << SDPCM_CHANNEL_SHIFT) & in brcmf_sdio_hdpack()
1506 hdrval |= (hd_info->dat_offset << SDPCM_DOFFSET_SHIFT) & in brcmf_sdio_hdpack()
2194 struct brcmf_sdio_hdrinfo hd_info = {0}; in brcmf_sdio_txpkt_prep() local
2217 hd_info.len = pkt_next->len; in brcmf_sdio_txpkt_prep()
2218 hd_info.lastfrm = skb_queue_is_last(pktq, pkt_next); in brcmf_sdio_txpkt_prep()
2224 hd_info.tail_pad = (u16)ret; in brcmf_sdio_txpkt_prep()
2228 hd_info.channel = chan; in brcmf_sdio_txpkt_prep()
2229 hd_info.dat_offset = head_pad + bus->tx_hdrlen; in brcmf_sdio_txpkt_prep()
2230 hd_info.seq_num = txseq++; in brcmf_sdio_txpkt_prep()
2233 brcmf_sdio_hdpack(bus, pkt_next->data, &hd_info); in brcmf_sdio_txpkt_prep()
2238 brcmf_dbg_hex_dump(true, pkt_next->data, hd_info.len, in brcmf_sdio_txpkt_prep()
2400 struct brcmf_sdio_hdrinfo hd_info = {0}; in brcmf_sdio_tx_ctrlframe() local
2428 hd_info.len = len - pad; in brcmf_sdio_tx_ctrlframe()
2429 hd_info.channel = SDPCM_CONTROL_CHANNEL; in brcmf_sdio_tx_ctrlframe()
2430 hd_info.dat_offset = doff + bus->tx_hdrlen; in brcmf_sdio_tx_ctrlframe()
2431 hd_info.seq_num = bus->tx_seq; in brcmf_sdio_tx_ctrlframe()
2432 hd_info.lastfrm = true; in brcmf_sdio_tx_ctrlframe()
2433 hd_info.tail_pad = pad; in brcmf_sdio_tx_ctrlframe()
2434 brcmf_sdio_hdpack(bus, frame, &hd_info); in brcmf_sdio_tx_ctrlframe()