diff options
author | Jeff Kirsher <jeffrey.t.kirsher@intel.com> | 2006-03-03 03:16:59 +0100 |
---|---|---|
committer | root <root@jk-desktop.jf.intel.com> | 2006-03-03 03:16:59 +0100 |
commit | 9f644d518f35903ecaff062d6e9e4f7080d80cfb (patch) | |
tree | 10d7df285871ff51266f45350a2b0a3de21a5931 | |
parent | e1000: Remove Multiqueue code until we have support for MSI-X in our hardware (diff) | |
download | linux-9f644d518f35903ecaff062d6e9e4f7080d80cfb.tar.xz linux-9f644d518f35903ecaff062d6e9e4f7080d80cfb.zip |
e1000: Fix dead counters
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Signed-off-by: Jesse Brandeburg <jesse.brandeburg@intel.com>
Signed-off-by: John Ronciak <john.ronciak@intel.com>
-rw-r--r-- | drivers/net/e1000/e1000_ethtool.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/net/e1000/e1000_ethtool.c b/drivers/net/e1000/e1000_ethtool.c index c7b47911f003..9c77413faf0c 100644 --- a/drivers/net/e1000/e1000_ethtool.c +++ b/drivers/net/e1000/e1000_ethtool.c @@ -60,7 +60,6 @@ static const struct e1000_stats e1000_gstrings_stats[] = { { "tx_bytes", E1000_STAT(net_stats.tx_bytes) }, { "rx_errors", E1000_STAT(net_stats.rx_errors) }, { "tx_errors", E1000_STAT(net_stats.tx_errors) }, - { "rx_dropped", E1000_STAT(net_stats.rx_dropped) }, { "tx_dropped", E1000_STAT(net_stats.tx_dropped) }, { "multicast", E1000_STAT(net_stats.multicast) }, { "collisions", E1000_STAT(net_stats.collisions) }, |