greth: Remove unnecessary memset of napi member in netdev private data
authorTobias Klauser <tklauser@distanz.ch>
Thu, 3 Jun 2010 20:24:21 +0000 (20:24 +0000)
committerDavid S. Miller <davem@davemloft.net>
Mon, 7 Jun 2010 08:08:11 +0000 (01:08 -0700)
The memory for the private data is allocated using kzalloc in
alloc_etherdev (or alloc_netdev_mq respectively) so there is no need to
set the napi member to 0 explicitely.

Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/greth.c

index 3a029d0..4d09eab 100644 (file)
@@ -1555,7 +1555,6 @@ static int __devinit greth_of_probe(struct of_device *ofdev, const struct of_dev
        }
 
        /* setup NAPI */
-       memset(&greth->napi, 0, sizeof(greth->napi));
        netif_napi_add(dev, &greth->napi, greth_poll, 64);
 
        return 0;