aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/tulip/interrupt.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net/tulip/interrupt.c')
-rw-r--r--drivers/net/tulip/interrupt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/tulip/interrupt.c b/drivers/net/tulip/interrupt.c
index e86df07769a1..9b08afbd1f65 100644
--- a/drivers/net/tulip/interrupt.c
+++ b/drivers/net/tulip/interrupt.c
@@ -673,7 +673,7 @@ irqreturn_t tulip_interrupt(int irq, void *dev_instance)
673 if (tp->link_change) 673 if (tp->link_change)
674 (tp->link_change)(dev, csr5); 674 (tp->link_change)(dev, csr5);
675 } 675 }
676 if (csr5 & SytemError) { 676 if (csr5 & SystemError) {
677 int error = (csr5 >> 23) & 7; 677 int error = (csr5 >> 23) & 7;
678 /* oops, we hit a PCI error. The code produced corresponds 678 /* oops, we hit a PCI error. The code produced corresponds
679 * to the reason: 679 * to the reason:
@@ -743,7 +743,7 @@ irqreturn_t tulip_interrupt(int irq, void *dev_instance)
743 TxFIFOUnderflow | 743 TxFIFOUnderflow |
744 TxJabber | 744 TxJabber |
745 TPLnkFail | 745 TPLnkFail |
746 SytemError )) != 0); 746 SystemError )) != 0);
747#else 747#else
748 } while ((csr5 & (NormalIntr|AbnormalIntr)) != 0); 748 } while ((csr5 & (NormalIntr|AbnormalIntr)) != 0);
749 749