Lines Matching refs:status
126 #define TX_STATUS 0 /* transmit status register */
127 #define RX_STATUS 1 /* receive status register */
730 /* get status */
734 /* clear status */
782 netdev_notice(dev, "transmit timed out with status %04x, %s?\n",
940 /* Clear all status */
967 u_short status = inw(ioaddr + DATAPORT);
969 netdev_dbg(dev, "Rxing packet mode %02x status %04x.\n",
970 inb(ioaddr + RX_MODE), status);
972 if (status == 0) {
977 if ((status & 0xF0) != 0x20) { /* There was an error. */
979 if (status & F_LEN_ERR) dev->stats.rx_length_errors++;
980 if (status & F_ALG_ERR) dev->stats.rx_frame_errors++;
981 if (status & F_CRC_ERR) dev->stats.rx_crc_errors++;
982 if (status & F_OVR_FLO) dev->stats.rx_over_errors++;
1033 (void)inw(ioaddr + DATAPORT); /+ dummy status read +/