Lines Matching defs:tx_status
1901 u32 tx_status;
1904 tx_status = sis_priv->tx_ring[entry].cmdsts;
1906 if (tx_status & OWN) {
1913 if (tx_status & (ABORT | UNDERRUN | OWCOLL)) {
1918 net_dev->name, tx_status);
1920 if (tx_status & UNDERRUN)
1922 if (tx_status & ABORT)
1924 if (tx_status & NOCARRIER)
1926 if (tx_status & OWCOLL)
1930 net_dev->stats.collisions += (tx_status & COLCNT) >> 16;
1931 net_dev->stats.tx_bytes += tx_status & DSIZE;