Commit 7bb82e83 authored by Atsushi Nemoto's avatar Atsushi Nemoto Committed by David S. Miller

tc35815: Fix rx_missed_errors count

The Miss_Cnt register is cleared by reading.  Accumulate its value to
rx_missed_errors count.
Signed-off-by: default avatarAtsushi Nemoto <anemo@mba.ocn.ne.jp>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent c60a5cf7
......@@ -2139,7 +2139,7 @@ static struct net_device_stats *tc35815_get_stats(struct net_device *dev)
(struct tc35815_regs __iomem *)dev->base_addr;
if (netif_running(dev))
/* Update the statistics from the device registers. */
dev->stats.rx_missed_errors = tc_readl(&tr->Miss_Cnt);
dev->stats.rx_missed_errors += tc_readl(&tr->Miss_Cnt);
return &dev->stats;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment