Lines Matching refs:tx_status
1942 unsigned char tx_status = 0; in vortex_error() local
1949 tx_status = ioread8(ioaddr + TxStatus); in vortex_error()
1952 (tx_status != 0x88 && vortex_debug > 0)) { in vortex_error()
1954 dev->name, tx_status); in vortex_error()
1955 if (tx_status == 0x82) { in vortex_error()
1961 if (tx_status & 0x14) dev->stats.tx_fifo_errors++; in vortex_error()
1962 if (tx_status & 0x38) dev->stats.tx_aborted_errors++; in vortex_error()
1963 if (tx_status & 0x08) vp->xstats.tx_max_collisions++; in vortex_error()
1965 if (tx_status & 0x30) { /* txJabber or txUnderrun */ in vortex_error()
1967 } else if ((tx_status & 0x08) && (vp->drv_flags & MAX_COLLISION_RESET)) { /* maxCollisions */ in vortex_error()
2087 int tx_status; in vortex_start_xmit() local
2090 while (--i > 0 && (tx_status = ioread8(ioaddr + TxStatus)) > 0) { in vortex_start_xmit()
2091 if (tx_status & 0x3C) { /* A Tx-disabling error occurred. */ in vortex_start_xmit()
2094 dev->name, tx_status); in vortex_start_xmit()
2095 if (tx_status & 0x04) dev->stats.tx_fifo_errors++; in vortex_start_xmit()
2096 if (tx_status & 0x38) dev->stats.tx_aborted_errors++; in vortex_start_xmit()
2097 if (tx_status & 0x30) { in vortex_start_xmit()