aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/tulip/tulip.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net/tulip/tulip.h')
-rw-r--r--drivers/net/tulip/tulip.h11
1 files changed, 4 insertions, 7 deletions
diff --git a/drivers/net/tulip/tulip.h b/drivers/net/tulip/tulip.h
index e525875ed67d..9db528967da9 100644
--- a/drivers/net/tulip/tulip.h
+++ b/drivers/net/tulip/tulip.h
@@ -417,7 +417,6 @@ struct tulip_private {
417 int revision; 417 int revision;
418 int flags; 418 int flags;
419 struct napi_struct napi; 419 struct napi_struct napi;
420 struct net_device_stats stats;
421 struct timer_list timer; /* Media selection timer. */ 420 struct timer_list timer; /* Media selection timer. */
422 struct timer_list oom_timer; /* Out of memory timer. */ 421 struct timer_list oom_timer; /* Out of memory timer. */
423 u32 mc_filter[2]; 422 u32 mc_filter[2];
@@ -548,11 +547,9 @@ static inline void tulip_stop_rxtx(struct tulip_private *tp)
548 udelay(10); 547 udelay(10);
549 548
550 if (!i) 549 if (!i)
551 printk(KERN_DEBUG "%s: tulip_stop_rxtx() failed" 550 netdev_dbg(tp->dev, "tulip_stop_rxtx() failed (CSR5 0x%x CSR6 0x%x)\n",
552 " (CSR5 0x%x CSR6 0x%x)\n", 551 ioread32(ioaddr + CSR5),
553 pci_name(tp->pdev), 552 ioread32(ioaddr + CSR6));
554 ioread32(ioaddr + CSR5),
555 ioread32(ioaddr + CSR6));
556 } 553 }
557} 554}
558 555
@@ -570,7 +567,7 @@ static inline void tulip_tx_timeout_complete(struct tulip_private *tp, void __io
570 /* Trigger an immediate transmit demand. */ 567 /* Trigger an immediate transmit demand. */
571 iowrite32(0, ioaddr + CSR1); 568 iowrite32(0, ioaddr + CSR1);
572 569
573 tp->stats.tx_errors++; 570 tp->dev->stats.tx_errors++;
574} 571}
575 572
576#endif /* __NET_TULIP_H__ */ 573#endif /* __NET_TULIP_H__ */