aboutsummaryrefslogtreecommitdiff
path: root/net/atm
diff options
context:
space:
mode:
authorEric Dumazet <eric.dumazet@gmail.com>2010-08-18 10:44:34 +0000
committerDavid S. Miller <davem@davemloft.net>2010-08-19 00:14:36 -0700
commitb92840900fb575004cac694e56fd0a43f54dc344 (patch)
tree29e20d684393515c7278427f46dd804a0d66f74f /net/atm
parentbb2537f1e76b3fb18c3fc1dff1df98ebc10af633 (diff)
atm: remove a net_device_stats clear
No need to clear device stats in lec_open() Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/atm')
-rw-r--r--net/atm/lec.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/net/atm/lec.c b/net/atm/lec.c
index d98bde1a0ac..181d70c73d7 100644
--- a/net/atm/lec.c
+++ b/net/atm/lec.c
@@ -220,7 +220,6 @@ static unsigned char *get_tr_dst(unsigned char *packet, unsigned char *rdesc)
static int lec_open(struct net_device *dev)
{
netif_start_queue(dev);
- memset(&dev->stats, 0, sizeof(struct net_device_stats));
return 0;
}