Lines Matching refs:intr_status
596 static void netdev_error(struct net_device *dev, int intr_status);
600 static void netdev_error(struct net_device *dev, int intr_status);
1319 u32 intr_status = readl(ioaddr + IntrClear);
1323 dev->name, intr_status);
1325 if (intr_status == 0 || intr_status == (u32) -1)
1330 if (intr_status & (IntrRxDone | IntrRxEmpty)) {
1404 if (intr_status & IntrStatsMax)
1408 if (intr_status & IntrLinkChange)
1412 if (intr_status & IntrAbnormalSummary)
1413 netdev_error(dev, intr_status);
1419 dev->name, intr_status);
1561 u32 intr_status;
1571 intr_status = readl(ioaddr + IntrStatus);
1572 } while (intr_status & (IntrRxDone | IntrRxEmpty));
1575 intr_status = readl(ioaddr + IntrEnable);
1576 intr_status |= IntrRxDone | IntrRxEmpty;
1577 writel(intr_status, ioaddr + IntrEnable);
1690 static void netdev_error(struct net_device *dev, int intr_status)
1695 if (intr_status & IntrTxDataLow) {
1703 if (intr_status & IntrRxGFPDead) {
1707 if (intr_status & (IntrNoTxCsum | IntrDMAErr)) {
1711 if ((intr_status & ~(IntrNormalMask | IntrAbnormalSummary | IntrLinkChange | IntrStatsMax | IntrTxDataLow | IntrRxGFPDead | IntrNoTxCsum | IntrPCIPad)) && debug)
1713 dev->name, intr_status);