net: tile: Remove unnecessary memset of netdev private data
The memory for private data is allocated using kzalloc/vzalloc in alloc_netdev_mqs, thus there is no need to zero it again in the driver. Signed-off-by: Tobias Klauser <tklauser@distanz.ch> Acked-by: Chris Metcalf <cmetcalf@tilera.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
d581ebf5a1
commit
884460178f
@@ -2211,7 +2211,6 @@ static void tile_net_dev_init(const char *name, const uint8_t *mac)
|
|||||||
|
|
||||||
/* Initialize "priv". */
|
/* Initialize "priv". */
|
||||||
priv = netdev_priv(dev);
|
priv = netdev_priv(dev);
|
||||||
memset(priv, 0, sizeof(*priv));
|
|
||||||
priv->dev = dev;
|
priv->dev = dev;
|
||||||
priv->channel = -1;
|
priv->channel = -1;
|
||||||
priv->loopify_channel = -1;
|
priv->loopify_channel = -1;
|
||||||
|
Reference in New Issue
Block a user