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>
This commit is contained in:
Ajit Khaparde 2009-10-07 02:45:34 +00:00 committed by David S. Miller
parent 7274c20f7b
commit 5a4d631154
2 changed files with 1 additions and 3 deletions

View File

@ -1203,8 +1203,6 @@ struct netxen_adapter {
struct work_struct tx_timeout_task;
struct net_device_stats net_stats;
nx_nic_intr_coalesce_t coal;
unsigned long state;

View File

@ -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));