Lines Matching defs:intr_status
575 static void netdev_error(struct net_device *dev, int intr_status);
579 static void netdev_error(struct net_device *dev, int intr_status);
1310 u32 intr_status = readl(ioaddr + IntrClear);
1314 dev->name, intr_status);
1316 if (intr_status == 0 || intr_status == (u32) -1)
1321 if (intr_status & (IntrRxDone | IntrRxEmpty)) {
1395 if (intr_status & IntrStatsMax)
1399 if (intr_status & IntrLinkChange)
1403 if (intr_status & IntrAbnormalSummary)
1404 netdev_error(dev, intr_status);
1410 dev->name, intr_status);
1554 u32 intr_status;
1564 intr_status = readl(ioaddr + IntrStatus);
1565 } while (intr_status & (IntrRxDone | IntrRxEmpty));
1568 intr_status = readl(ioaddr + IntrEnable);
1569 intr_status |= IntrRxDone | IntrRxEmpty;
1570 writel(intr_status, ioaddr + IntrEnable);
1689 static void netdev_error(struct net_device *dev, int intr_status)
1694 if (intr_status & IntrTxDataLow) {
1702 if (intr_status & IntrRxGFPDead) {
1706 if (intr_status & (IntrNoTxCsum | IntrDMAErr)) {
1710 if ((intr_status & ~(IntrNormalMask | IntrAbnormalSummary | IntrLinkChange | IntrStatsMax | IntrTxDataLow | IntrRxGFPDead | IntrNoTxCsum | IntrPCIPad)) && debug)
1712 dev->name, intr_status);