aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/et131x
diff options
context:
space:
mode:
authorMark Einon <mark.einon@gmail.com>2014-09-11 22:59:41 +0100
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-09-19 16:02:12 -0700
commit23780f077b4ab6e7fdcc75160c2f013b73ef78bd (patch)
tree23b913d5ed661d7809131302234066eb27302e96 /drivers/staging/et131x
parentstaging: et131x: In et131x_tx(), don't return NETDEV_TX_BUSY, just drop the packet (diff)
downloadlinux-dev-23780f077b4ab6e7fdcc75160c2f013b73ef78bd.tar.xz
linux-dev-23780f077b4ab6e7fdcc75160c2f013b73ef78bd.zip
staging: et131x: Tidy up rx/tx dropped & bytes stats
Remove some fairly useless comments regarding rx/tx _bytes and _dropped, and use rcvd_pkts_dropped stat value to provide rx_dropped. Signed-off-by: Mark Einon <mark.einon@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/et131x')
-rw-r--r--drivers/staging/et131x/et131x.c12
1 files changed, 2 insertions, 10 deletions
diff --git a/drivers/staging/et131x/et131x.c b/drivers/staging/et131x/et131x.c
index c1ba51af3207..565d552d531a 100644
--- a/drivers/staging/et131x/et131x.c
+++ b/drivers/staging/et131x/et131x.c
@@ -4002,17 +4002,9 @@ static struct net_device_stats *et131x_stats(struct net_device *netdev)
stats->rx_length_errors = devstat->rx_length_errs;
stats->rx_over_errors = devstat->rx_overflows;
stats->rx_crc_errors = devstat->rx_crc_errs;
+ stats->rx_dropped = devstat->rcvd_pkts_dropped;
- /* NOTE: These stats don't have corresponding values in CE_STATS,
- * so we're going to have to update these directly from within the
- * TX/RX code
- */
- /* stats->rx_bytes = 20; devstat->; */
- /* stats->tx_bytes = 20; devstat->; */
- /* stats->rx_dropped = devstat->; */
- /* stats->tx_dropped = devstat->; */
-
- /* NOTE: Not used, can't find analogous statistics */
+ /* NOTE: Not used, can't find analogous statistics */
/* stats->rx_frame_errors = devstat->; */
/* stats->rx_fifo_errors = devstat->; */
/* stats->rx_missed_errors = devstat->; */