Lines Matching refs:rx_error
2532 unsigned char rx_error = ioread8(ioaddr + RxErrors);
2534 pr_debug(" Rx error: status %2.2x.\n", rx_error);
2536 if (rx_error & 0x01) dev->stats.rx_over_errors++;
2537 if (rx_error & 0x02) dev->stats.rx_length_errors++;
2538 if (rx_error & 0x04) dev->stats.rx_frame_errors++;
2539 if (rx_error & 0x08) dev->stats.rx_crc_errors++;
2540 if (rx_error & 0x10) dev->stats.rx_length_errors++;
2604 unsigned char rx_error = rx_status >> 16;
2606 pr_debug(" Rx error: status %2.2x.\n", rx_error);
2608 if (rx_error & 0x01) dev->stats.rx_over_errors++;
2609 if (rx_error & 0x02) dev->stats.rx_length_errors++;
2610 if (rx_error & 0x04) dev->stats.rx_frame_errors++;
2611 if (rx_error & 0x08) dev->stats.rx_crc_errors++;
2612 if (rx_error & 0x10) dev->stats.rx_length_errors++;