Lines Matching refs:tx_status
1966 unsigned char tx_status = 0; in vortex_error() local
1973 tx_status = ioread8(ioaddr + TxStatus); in vortex_error()
1976 (tx_status != 0x88 && vortex_debug > 0)) { in vortex_error()
1978 dev->name, tx_status); in vortex_error()
1979 if (tx_status == 0x82) { in vortex_error()
1985 if (tx_status & 0x14) dev->stats.tx_fifo_errors++; in vortex_error()
1986 if (tx_status & 0x38) dev->stats.tx_aborted_errors++; in vortex_error()
1987 if (tx_status & 0x08) vp->xstats.tx_max_collisions++; in vortex_error()
1989 if (tx_status & 0x30) { /* txJabber or txUnderrun */ in vortex_error()
1991 } else if ((tx_status & 0x08) && (vp->drv_flags & MAX_COLLISION_RESET)) { /* maxCollisions */ in vortex_error()
2105 int tx_status; in vortex_start_xmit() local
2108 while (--i > 0 && (tx_status = ioread8(ioaddr + TxStatus)) > 0) { in vortex_start_xmit()
2109 if (tx_status & 0x3C) { /* A Tx-disabling error occurred. */ in vortex_start_xmit()
2112 dev->name, tx_status); in vortex_start_xmit()
2113 if (tx_status & 0x04) dev->stats.tx_fifo_errors++; in vortex_start_xmit()
2114 if (tx_status & 0x38) dev->stats.tx_aborted_errors++; in vortex_start_xmit()
2115 if (tx_status & 0x30) { in vortex_start_xmit()