Lines Matching refs:tx_status
1964 unsigned char tx_status = 0; in vortex_error() local
1971 tx_status = ioread8(ioaddr + TxStatus); in vortex_error()
1974 (tx_status != 0x88 && vortex_debug > 0)) { in vortex_error()
1976 dev->name, tx_status); in vortex_error()
1977 if (tx_status == 0x82) { in vortex_error()
1983 if (tx_status & 0x14) dev->stats.tx_fifo_errors++; in vortex_error()
1984 if (tx_status & 0x38) dev->stats.tx_aborted_errors++; in vortex_error()
1985 if (tx_status & 0x08) vp->xstats.tx_max_collisions++; in vortex_error()
1987 if (tx_status & 0x30) { /* txJabber or txUnderrun */ in vortex_error()
1989 } else if ((tx_status & 0x08) && (vp->drv_flags & MAX_COLLISION_RESET)) { /* maxCollisions */ in vortex_error()
2101 int tx_status; in vortex_start_xmit() local
2104 while (--i > 0 && (tx_status = ioread8(ioaddr + TxStatus)) > 0) { in vortex_start_xmit()
2105 if (tx_status & 0x3C) { /* A Tx-disabling error occurred. */ in vortex_start_xmit()
2108 dev->name, tx_status); in vortex_start_xmit()
2109 if (tx_status & 0x04) dev->stats.tx_fifo_errors++; in vortex_start_xmit()
2110 if (tx_status & 0x38) dev->stats.tx_aborted_errors++; in vortex_start_xmit()
2111 if (tx_status & 0x30) { in vortex_start_xmit()