summaryrefslogtreecommitdiffstats
path: root/drivers/net/netxen/netxen_nic_main.c
diff options
context:
space:
mode:
authorAjit Khaparde2009-10-07 04:45:34 +0200
committerDavid S. Miller2009-10-08 07:00:25 +0200
commit5a4d631154de41bb43eefb03d2124224c23c1fa4 (patch)
tree61402c9fc26dff20c3110d42fcc892357e0df24b /drivers/net/netxen/netxen_nic_main.c
parente1000e: Use the instance of net_device_stats from net_device. (diff)
downloadkernel-qcow2-linux-5a4d631154de41bb43eefb03d2124224c23c1fa4.tar.gz
kernel-qcow2-linux-5a4d631154de41bb43eefb03d2124224c23c1fa4.tar.xz
kernel-qcow2-linux-5a4d631154de41bb43eefb03d2124224c23c1fa4.zip
netxen: Use the instance of net_device_stats from net_device.
Since net_device has an instance of net_device_stats, we can remove the instance of this from the private adapter structure. Signed-off-by: Ajit Khaparde <ajitk@serverengines.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/netxen/netxen_nic_main.c')
-rw-r--r--drivers/net/netxen/netxen_nic_main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/netxen/netxen_nic_main.c b/drivers/net/netxen/netxen_nic_main.c
index b5aa974827e5..0039b85d4d53 100644
--- a/drivers/net/netxen/netxen_nic_main.c
+++ b/drivers/net/netxen/netxen_nic_main.c
@@ -1923,7 +1923,7 @@ request_reset:
struct net_device_stats *netxen_nic_get_stats(struct net_device *netdev)
{
struct netxen_adapter *adapter = netdev_priv(netdev);
- struct net_device_stats *stats = &adapter->net_stats;
+ struct net_device_stats *stats = &netdev->stats;
memset(stats, 0, sizeof(*stats));