diff options
Diffstat (limited to 'drivers/net/tulip/tulip.h')
-rw-r--r-- | drivers/net/tulip/tulip.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/drivers/net/tulip/tulip.h b/drivers/net/tulip/tulip.h index 25f25da76917..c840d2e67b23 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, |
@@ -482,8 +482,11 @@ static inline void tulip_stop_rxtx(struct tulip_private *tp) | |||
482 | udelay(10); | 482 | udelay(10); |
483 | 483 | ||
484 | if (!i) | 484 | if (!i) |
485 | printk(KERN_DEBUG "%s: tulip_stop_rxtx() failed\n", | 485 | printk(KERN_DEBUG "%s: tulip_stop_rxtx() failed" |
486 | pci_name(tp->pdev)); | 486 | " (CSR5 0x%x CSR6 0x%x)\n", |
487 | pci_name(tp->pdev), | ||
488 | ioread32(ioaddr + CSR5), | ||
489 | ioread32(ioaddr + CSR6)); | ||
487 | } | 490 | } |
488 | } | 491 | } |
489 | 492 | ||