diff options
author | Eric Dumazet <eric.dumazet@gmail.com> | 2010-08-20 02:55:16 (GMT) |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-08-22 06:09:36 (GMT) |
commit | a2c483a19a96cf5cb9465f42cca34548b9211954 (patch) | |
tree | 0cbaee12e9d4e354bac5aa3d92e0cada82271f4e /drivers/net/atl1c/atl1c.h | |
parent | 00959ade36acadc00e757f87060bf6e4501d545f (diff) | |
download | linux-a2c483a19a96cf5cb9465f42cca34548b9211954.tar.xz |
atl1c: use net_device_stats from struct net_device
struct net_device has its own struct net_device_stats member, so use
this one instead of a private copy in the atl1c_adapter struct.
Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/atl1c/atl1c.h')
-rw-r--r-- | drivers/net/atl1c/atl1c.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/net/atl1c/atl1c.h b/drivers/net/atl1c/atl1c.h index 52abbbd..ef4115b 100644 --- a/drivers/net/atl1c/atl1c.h +++ b/drivers/net/atl1c/atl1c.h @@ -559,7 +559,6 @@ struct atl1c_adapter { struct napi_struct napi; struct atl1c_hw hw; struct atl1c_hw_stats hw_stats; - struct net_device_stats net_stats; struct mii_if_info mii; /* MII interface info */ u16 rx_buffer_len; |