HomeSort by: relevance | last modified time | path
    Searched refs:txb_next_tx (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/dev/ic/
dp8390var.h 62 u_short txb_next_tx; /* pointer to next buffer ready to xmit */ member in struct:dp8390_softc
dp8390.c 282 sc->txb_next_tx = 0;
405 if ((sc->txb_next_tx + sc->txb_inuse) % sc->txb_cnt != sc->txb_new)
407 sc->txb_next_tx, sc->txb_inuse, sc->txb_cnt, sc->txb_new);
413 len = sc->txb_len[sc->txb_next_tx];
423 sc->tx_page_start + sc->txb_next_tx * ED_TXBUF_SIZE);
435 if (++sc->txb_next_tx == sc->txb_cnt)
436 sc->txb_next_tx = 0;

Completed in 16 milliseconds