Lines Matching refs:TxDescList
164 static etrax_eth_descr TxDescList[NBR_OF_TX_DESC] __attribute__ ((aligned(32))); variable
351 TxDescList[i].descr.ctrl = 0; in etrax_ethernet_init()
352 TxDescList[i].descr.sw_len = 0; in etrax_ethernet_init()
353 TxDescList[i].descr.next = virt_to_phys(&TxDescList[i + 1].descr); in etrax_ethernet_init()
354 TxDescList[i].descr.buf = 0; in etrax_ethernet_init()
355 TxDescList[i].descr.status = 0; in etrax_ethernet_init()
356 TxDescList[i].descr.hw_len = 0; in etrax_ethernet_init()
357 TxDescList[i].skb = 0; in etrax_ethernet_init()
360 TxDescList[NBR_OF_TX_DESC - 1].descr.ctrl = d_eol; in etrax_ethernet_init()
361 TxDescList[NBR_OF_TX_DESC - 1].descr.next = virt_to_phys(&TxDescList[0].descr); in etrax_ethernet_init()
367 myFirstTxDesc = &TxDescList[0]; in etrax_ethernet_init()
368 myNextTxDesc = &TxDescList[0]; in etrax_ethernet_init()
369 myLastTxDesc = &TxDescList[NBR_OF_TX_DESC - 1]; in etrax_ethernet_init()