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()
159 struct ath10k_skb_cb *skb_cb = ATH10K_SKB_CB(skb); in ath10k_htc_send() local
182 skb_cb->eid = eid; in ath10k_htc_send()
184 skb_cb->paddr = dma_map_single(dev, skb->data, skb->len, in ath10k_htc_send()
186 ret = dma_mapping_error(dev, skb_cb->paddr); in ath10k_htc_send()
196 sg_item.paddr = skb_cb->paddr; in ath10k_htc_send()
207 dma_unmap_single(dev, skb_cb->paddr, skb->len, DMA_TO_DEVICE); in ath10k_htc_send()
218 struct ath10k_skb_cb *skb_cb; in ath10k_htc_tx_completion_handler() local
224 skb_cb = ATH10K_SKB_CB(skb); in ath10k_htc_tx_completion_handler()
225 ep = &htc->endpoint[skb_cb->eid]; in ath10k_htc_tx_completion_handler()