Lines Matching refs:txd
717 struct tx_desc *txd, *first_txd; in typhoon_start_tx() local
787 txd = (struct tx_desc *) (txRing->ringBase + txRing->lastWrite); in typhoon_start_tx()
796 txd->flags = TYPHOON_FRAG_DESC | TYPHOON_DESC_VALID; in typhoon_start_tx()
797 txd->len = cpu_to_le16(skb->len); in typhoon_start_tx()
798 txd->frag.addr = cpu_to_le32(skb_dma); in typhoon_start_tx()
799 txd->frag.addrHi = 0; in typhoon_start_tx()
807 txd->flags = TYPHOON_FRAG_DESC | TYPHOON_DESC_VALID; in typhoon_start_tx()
808 txd->len = cpu_to_le16(len); in typhoon_start_tx()
809 txd->frag.addr = cpu_to_le32(skb_dma); in typhoon_start_tx()
810 txd->frag.addrHi = 0; in typhoon_start_tx()
817 txd = (struct tx_desc *) (txRing->ringBase + in typhoon_start_tx()
825 txd->flags = TYPHOON_FRAG_DESC | TYPHOON_DESC_VALID; in typhoon_start_tx()
826 txd->len = cpu_to_le16(len); in typhoon_start_tx()
827 txd->frag.addr = cpu_to_le32(skb_dma); in typhoon_start_tx()
828 txd->frag.addrHi = 0; in typhoon_start_tx()