diff options
author | Valerie Henson <val_henson@linux.intel.com> | 2007-03-12 05:31:33 -0400 |
---|---|---|
committer | Jeff Garzik <jeff@garzik.org> | 2007-04-28 11:00:59 -0400 |
commit | 1ddb98618d5b797cb5300f093c1df1f38f79d9ba (patch) | |
tree | 6d1687c5e37b4bdc1eb7316b4c7db7636879a734 /drivers/net/tulip | |
parent | eb117b1786804f2e128b871879ffe8f6a2701378 (diff) |
Fix tulip SytemError typo
Fix an annoying typo - SytemError -> SystemError
Signed-off-by: Valerie Henson <val_henson@linux.intel.com>
Cc: Jeff Garzik <jeff@garzik.org>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'drivers/net/tulip')
-rw-r--r-- | drivers/net/tulip/interrupt.c | 4 | ||||
-rw-r--r-- | drivers/net/tulip/tulip.h | 2 | ||||
-rw-r--r-- | drivers/net/tulip/winbond-840.c | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/drivers/net/tulip/interrupt.c b/drivers/net/tulip/interrupt.c index e86df07769a..9b08afbd1f6 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 | ||
diff --git a/drivers/net/tulip/tulip.h b/drivers/net/tulip/tulip.h index ceac47e775c..c840d2e67b2 100644 --- a/drivers/net/tulip/tulip.h +++ b/drivers/net/tulip/tulip.h | |||
@@ -132,7 +132,7 @@ enum pci_cfg_driver_reg { | |||
132 | /* The bits in the CSR5 status registers, mostly interrupt sources. */ | 132 | /* The bits in the CSR5 status registers, mostly interrupt sources. */ |
133 | enum status_bits { | 133 | enum status_bits { |
134 | TimerInt = 0x800, | 134 | TimerInt = 0x800, |
135 | SytemError = 0x2000, | 135 | SystemError = 0x2000, |
136 | TPLnkFail = 0x1000, | 136 | TPLnkFail = 0x1000, |
137 | TPLnkPass = 0x10, | 137 | TPLnkPass = 0x10, |
138 | NormalIntr = 0x10000, | 138 | NormalIntr = 0x10000, |
diff --git a/drivers/net/tulip/winbond-840.c b/drivers/net/tulip/winbond-840.c index 5b71ac78bca..fa440706fb4 100644 --- a/drivers/net/tulip/winbond-840.c +++ b/drivers/net/tulip/winbond-840.c | |||
@@ -1147,7 +1147,7 @@ static irqreturn_t intr_handler(int irq, void *dev_instance) | |||
1147 | } | 1147 | } |
1148 | 1148 | ||
1149 | /* Abnormal error summary/uncommon events handlers. */ | 1149 | /* Abnormal error summary/uncommon events handlers. */ |
1150 | if (intr_status & (AbnormalIntr | TxFIFOUnderflow | SytemError | | 1150 | if (intr_status & (AbnormalIntr | TxFIFOUnderflow | SystemError | |
1151 | TimerInt | TxDied)) | 1151 | TimerInt | TxDied)) |
1152 | netdev_error(dev, intr_status); | 1152 | netdev_error(dev, intr_status); |
1153 | 1153 | ||