|
@@ -903,18 +903,18 @@ static int amd8111e_read_mib(void __iomem *mmio, u8 MIB_COUNTER)
|
|
|
}
|
|
|
|
|
|
/*
|
|
|
-This function reads the mib registers and returns the hardware statistics. It updates previous internal driver statistics with new values.
|
|
|
-*/
|
|
|
-static struct net_device_stats *amd8111e_get_stats(struct net_device * dev)
|
|
|
+ * This function reads the mib registers and returns the hardware statistics.
|
|
|
+ * It updates previous internal driver statistics with new values.
|
|
|
+ */
|
|
|
+static struct net_device_stats *amd8111e_get_stats(struct net_device *dev)
|
|
|
{
|
|
|
struct amd8111e_priv *lp = netdev_priv(dev);
|
|
|
void __iomem *mmio = lp->mmio;
|
|
|
unsigned long flags;
|
|
|
- /* struct net_device_stats *prev_stats = &lp->prev_stats; */
|
|
|
- struct net_device_stats* new_stats = &lp->stats;
|
|
|
+ struct net_device_stats *new_stats = &dev->stats;
|
|
|
|
|
|
- if(!lp->opened)
|
|
|
- return &lp->stats;
|
|
|
+ if (!lp->opened)
|
|
|
+ return new_stats;
|
|
|
spin_lock_irqsave (&lp->lock, flags);
|
|
|
|
|
|
/* stats.rx_packets */
|