Lines Matching refs:TxPtr
148 static int TxPtr; variable
467 TxPtr = 0; in davicom_init_chain()
504 txd[TxPtr].buf1sz = 192; in davicom_reset()
505 txd[TxPtr].control = 0x024; /* SF/CE */ in davicom_reset()
506 txd[TxPtr].status = 0x80000000; /* Give ownership to device */ in davicom_reset()
514 while ((txd[TxPtr].status & 0x80000000) && (currticks() < to)) /* Sten 10/9 */ in davicom_reset()
521 TxPtr = (++TxPtr >= NTXD) ? 0:TxPtr; /* Sten 10/9 */ in davicom_reset()
557 txd[TxPtr].buf1sz = ETH_HLEN+s; in davicom_transmit()
558 txd[TxPtr].control = 0x00000184; /* LS+FS+CE */ in davicom_transmit()
559 txd[TxPtr].status = 0x80000000; /* give ownership to device */ in davicom_transmit()
565 while ((txd[TxPtr].status & 0x80000000) && (currticks() < to)) in davicom_transmit()
573 TxPtr = (++TxPtr >= NTXD) ? 0:TxPtr; /* Sten 10/9 */ in davicom_transmit()