Home
last modified time | relevance | path

Searched refs:tx_next (Results 1 – 3 of 3) sorted by relevance

/openbmc/u-boot/drivers/net/
H A Deepro100.c199 static int tx_next; /* TX descriptor ring pointer */ variable
518 tx_cur = tx_next; in eepro100_init()
519 tx_next = ((tx_next + 1) % NUM_TX_DESC); in eepro100_init()
524 cfg_cmd->link = cpu_to_le32 (phys_to_bus ((u32) & tx_ring[tx_next])); in eepro100_init()
554 tx_cur = tx_next; in eepro100_init()
555 tx_next = ((tx_next + 1) % NUM_TX_DESC); in eepro100_init()
560 ias_cmd->link = cpu_to_le32 (phys_to_bus ((u32) & tx_ring[tx_next])); in eepro100_init()
605 tx_cur = tx_next; in eepro100_send()
606 tx_next = (tx_next + 1) % NUM_TX_DESC; in eepro100_send()
615 cpu_to_le32 (phys_to_bus ((u32) & tx_ring[tx_next])); in eepro100_send()
[all …]
H A Dne2000_base.c183 dp->tx_next = dp->tx_buf1; in dp83902a_start()
259 start_page = dp->tx_next; in dp83902a_send()
260 if (dp->tx_next == dp->tx_buf1) { in dp83902a_send()
264 dp->tx_next = dp->tx_buf2; in dp83902a_send()
269 dp->tx_next = dp->tx_buf1; in dp83902a_send()
H A Dne2000_base.h128 int tx_next; /* First free Tx page */ member