Lines Matching refs:skb_cb
24 struct ath10k_skb_cb *skb_cb; in ath10k_htc_build_tx_ctrl_skb() local
33 skb_cb = ATH10K_SKB_CB(skb); in ath10k_htc_build_tx_ctrl_skb()
34 memset(skb_cb, 0, sizeof(*skb_cb)); in ath10k_htc_build_tx_ctrl_skb()
43 struct ath10k_skb_cb *skb_cb = ATH10K_SKB_CB(skb); in ath10k_htc_restore_tx_skb() local
46 dma_unmap_single(htc->ar->dev, skb_cb->paddr, skb->len, DMA_TO_DEVICE); in ath10k_htc_restore_tx_skb()
95 struct ath10k_skb_cb *skb_cb = ATH10K_SKB_CB(skb); in ath10k_htc_send() local
131 skb_cb->eid = eid; in ath10k_htc_send()
133 skb_cb->paddr = dma_map_single(dev, skb->data, skb->len, in ath10k_htc_send()
135 ret = dma_mapping_error(dev, skb_cb->paddr); in ath10k_htc_send()
145 sg_item.paddr = skb_cb->paddr; in ath10k_htc_send()
156 dma_unmap_single(dev, skb_cb->paddr, skb->len, DMA_TO_DEVICE); in ath10k_htc_send()
177 struct ath10k_skb_cb *skb_cb; in ath10k_htc_tx_completion_handler() local
183 skb_cb = ATH10K_SKB_CB(skb); in ath10k_htc_tx_completion_handler()
184 ep = &htc->endpoint[skb_cb->eid]; in ath10k_htc_tx_completion_handler()