Commit da0721cc authored by Hariprasad Kelam's avatar Hariprasad Kelam Committed by Greg Kroah-Hartman

staging: rtl8192e: rtllib_module: Remove redundant memset

alloc_etherdev function internally calls kvzalloc . So we may not need
explicit memset after this call.
Signed-off-by: default avatarHariprasad Kelam <hariprasad.kelam@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 42203fbe
...@@ -83,7 +83,6 @@ struct net_device *alloc_rtllib(int sizeof_priv) ...@@ -83,7 +83,6 @@ struct net_device *alloc_rtllib(int sizeof_priv)
return NULL; return NULL;
} }
ieee = (struct rtllib_device *)netdev_priv_rsl(dev); ieee = (struct rtllib_device *)netdev_priv_rsl(dev);
memset(ieee, 0, sizeof(struct rtllib_device) + sizeof_priv);
ieee->dev = dev; ieee->dev = dev;
err = rtllib_networks_allocate(ieee); err = rtllib_networks_allocate(ieee);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment