diff options
author | Ilpo Järvinen <ilpo.jarvinen@helsinki.fi> | 2008-11-28 18:52:43 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-11-28 18:52:43 -0500 |
commit | d8e8034dcdef8c8fa94a14c3b555c09e065e742f (patch) | |
tree | ffa5e2dfb8ea234a5555de8339f4f32d9357619c /drivers/net/bnx2.c | |
parent | 9fd428761adbd5fbd7e23c312955eec1db8ace7a (diff) |
bnx2: use net_device_stats nowadays available in net_device
Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@helsinki.fi>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/bnx2.c')
-rw-r--r-- | drivers/net/bnx2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/bnx2.c b/drivers/net/bnx2.c index 8f1cd7cfa09d..182f2410c23d 100644 --- a/drivers/net/bnx2.c +++ b/drivers/net/bnx2.c | |||
@@ -6155,7 +6155,7 @@ bnx2_get_stats(struct net_device *dev) | |||
6155 | { | 6155 | { |
6156 | struct bnx2 *bp = netdev_priv(dev); | 6156 | struct bnx2 *bp = netdev_priv(dev); |
6157 | struct statistics_block *stats_blk = bp->stats_blk; | 6157 | struct statistics_block *stats_blk = bp->stats_blk; |
6158 | struct net_device_stats *net_stats = &bp->net_stats; | 6158 | struct net_device_stats *net_stats = &dev->stats; |
6159 | 6159 | ||
6160 | if (bp->stats_blk == NULL) { | 6160 | if (bp->stats_blk == NULL) { |
6161 | return net_stats; | 6161 | return net_stats; |