Lines Matching refs:skb_cb
27 struct ath10k_skb_cb *skb_cb; in ath10k_htc_build_tx_ctrl_skb() local
36 skb_cb = ATH10K_SKB_CB(skb); in ath10k_htc_build_tx_ctrl_skb()
37 memset(skb_cb, 0, sizeof(*skb_cb)); in ath10k_htc_build_tx_ctrl_skb()
46 struct ath10k_skb_cb *skb_cb = ATH10K_SKB_CB(skb); in ath10k_htc_restore_tx_skb() local
49 dma_unmap_single(htc->ar->dev, skb_cb->paddr, skb->len, DMA_TO_DEVICE); in ath10k_htc_restore_tx_skb()
171 struct ath10k_skb_cb *skb_cb = ATH10K_SKB_CB(skb); in ath10k_htc_send() local
194 skb_cb->eid = eid; in ath10k_htc_send()
196 skb_cb->paddr = dma_map_single(dev, skb->data, skb->len, in ath10k_htc_send()
198 ret = dma_mapping_error(dev, skb_cb->paddr); in ath10k_htc_send()
208 sg_item.paddr = skb_cb->paddr; in ath10k_htc_send()
219 dma_unmap_single(dev, skb_cb->paddr, skb->len, DMA_TO_DEVICE); in ath10k_htc_send()
230 struct ath10k_skb_cb *skb_cb; in ath10k_htc_tx_completion_handler() local
236 skb_cb = ATH10K_SKB_CB(skb); in ath10k_htc_tx_completion_handler()
237 ep = &htc->endpoint[skb_cb->eid]; in ath10k_htc_tx_completion_handler()