Commit d8e8034d authored by Ilpo Järvinen's avatar Ilpo Järvinen Committed by David S. Miller

bnx2: use net_device_stats nowadays available in net_device

Signed-off-by: default avatarIlpo Järvinen <ilpo.jarvinen@helsinki.fi>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 9fd42876
...@@ -6155,7 +6155,7 @@ bnx2_get_stats(struct net_device *dev) ...@@ -6155,7 +6155,7 @@ bnx2_get_stats(struct net_device *dev)
{ {
struct bnx2 *bp = netdev_priv(dev); struct bnx2 *bp = netdev_priv(dev);
struct statistics_block *stats_blk = bp->stats_blk; struct statistics_block *stats_blk = bp->stats_blk;
struct net_device_stats *net_stats = &bp->net_stats; struct net_device_stats *net_stats = &dev->stats;
if (bp->stats_blk == NULL) { if (bp->stats_blk == NULL) {
return net_stats; return net_stats;
......
...@@ -6872,8 +6872,6 @@ struct bnx2 { ...@@ -6872,8 +6872,6 @@ struct bnx2 {
int pm_cap; int pm_cap;
int pcix_cap; int pcix_cap;
struct net_device_stats net_stats;
struct flash_spec *flash_info; struct flash_spec *flash_info;
u32 flash_size; u32 flash_size;
......
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