KS8695: Remove unnecessary memset of netdev private data
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 it to 0 again. Signed-off-by: Tobias Klauser <tklauser@distanz.ch> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:

committed by
David S. Miller

parent
468003f571
commit
2039623a0b
@@ -1472,7 +1472,6 @@ ks8695_probe(struct platform_device *pdev)
|
|||||||
|
|
||||||
/* Configure our private structure a little */
|
/* Configure our private structure a little */
|
||||||
ksp = netdev_priv(ndev);
|
ksp = netdev_priv(ndev);
|
||||||
memset(ksp, 0, sizeof(struct ks8695_priv));
|
|
||||||
|
|
||||||
ksp->dev = &pdev->dev;
|
ksp->dev = &pdev->dev;
|
||||||
ksp->ndev = ndev;
|
ksp->ndev = ndev;
|
||||||
|
Reference in New Issue
Block a user