Home
last modified time | relevance | path

Searched refs:txb_next_tx (Results 1 – 2 of 2) sorted by relevance

/netbsd-src/sys/dev/ic/
H A Ddp8390.c282 sc->txb_next_tx = 0; in dp8390_init()
405 if ((sc->txb_next_tx + sc->txb_inuse) % sc->txb_cnt != sc->txb_new) in dp8390_xmit()
407 sc->txb_next_tx, sc->txb_inuse, sc->txb_cnt, sc->txb_new); in dp8390_xmit()
413 len = sc->txb_len[sc->txb_next_tx]; in dp8390_xmit()
423 sc->tx_page_start + sc->txb_next_tx * ED_TXBUF_SIZE); in dp8390_xmit()
435 if (++sc->txb_next_tx == sc->txb_cnt) in dp8390_xmit()
436 sc->txb_next_tx = 0; in dp8390_xmit()
H A Ddp8390var.h62 u_short txb_next_tx; /* pointer to next buffer ready to xmit */ member