Lines Matching refs:status

446 					"%4.4x status %4.4x.\n",
704 netdev_info(dev, "Using the 10base2 transceiver, MII status %4.4x.\n",
738 netdev_dbg(dev, "epic_open() ioaddr %p IRQ %d status %4.4x %s-duplex.\n",
824 netdev_dbg(dev, "epic_restart() done, cmd status %4.4x, ctl %4.4x interrupt %4.4x.\n",
857 netdev_dbg(dev, "Media monitor tick, Tx status %8.8x.\n",
875 netdev_warn(dev, "Transmit timeout using MII device, Tx status %4.4x.\n",
992 netdev_dbg(dev, "Queued Tx packet size %d to slot %d, flag %2.2x Tx status %8.8x.\n",
999 int status)
1006 netdev_dbg(dev, "Transmit error, Tx status %8.8x.\n",
1007 status);
1010 if (status & 0x1050)
1012 if (status & 0x0008)
1014 if (status & 0x0040)
1016 if (status & 0x0010)
1076 int status;
1078 status = er32(INTSTAT);
1080 ew32(INTSTAT, status & EpicNormalEvent);
1083 netdev_dbg(dev, "Interrupt, status=%#8.8x new intstat=%#8.8x.\n",
1084 status, er32(INTSTAT));
1087 if ((status & IntrSummary) == 0)
1092 if (status & EpicNapiEvent) {
1100 status &= ~EpicNapiEvent;
1103 if (status & (CntFull | TxUnderrun | PCIBusErr170 | PCIBusErr175)) {
1106 if (status == EpicRemoved)
1114 if (status & TxUnderrun) { /* Tx FIFO underflow. */
1120 if (status & PCIBusErr170) {
1121 netdev_err(dev, "PCI Bus Error! status %4.4x.\n",
1122 status);
1127 ew32(INTSTAT, status & 0x7f18);
1133 status);
1155 int status = ep->rx_ring[entry].rxstatus;
1158 netdev_dbg(dev, " epic_rx() status was %8.8x.\n",
1159 status);
1162 if (status & 0x2006) {
1164 netdev_dbg(dev, "epic_rx() error status was %8.8x.\n",
1165 status);
1166 if (status & 0x2000) {
1167 netdev_warn(dev, "Oversized Ethernet frame spanned multiple buffers, status %4.4x!\n",
1168 status);
1170 } else if (status & 0x0006)
1176 short pkt_len = (status >> 16) - 4;
1180 netdev_err(dev, "Oversized Ethernet frame, status %x %d bytes.\n",
1181 status, pkt_len);
1240 int status;
1242 status = er32(INTSTAT);
1244 if (status == EpicRemoved)
1246 if (status & RxOverflow) /* Missed a Rx frame. */
1248 if (status & (RxOverflow | RxFull))
1290 netdev_dbg(dev, "Shutting down ethercard, status was %2.2x.\n",