aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/rtl8192e
diff options
context:
space:
mode:
authorHariprasad Kelam <hariprasad.kelam@gmail.com>2019-06-18 23:34:31 +0530
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2019-06-20 14:39:15 +0200
commitda0721cc2620e18d325a2bd050df1c74e10b975e (patch)
treeb447e7b1ca44cae91b85ebddec2d9c3735d78822 /drivers/staging/rtl8192e
parentstaging: wilc1000: Remove redundant memset (diff)
downloadlinux-dev-da0721cc2620e18d325a2bd050df1c74e10b975e.tar.xz
linux-dev-da0721cc2620e18d325a2bd050df1c74e10b975e.zip
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: Hariprasad Kelam <hariprasad.kelam@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/rtl8192e')
-rw-r--r--drivers/staging/rtl8192e/rtllib_module.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/staging/rtl8192e/rtllib_module.c b/drivers/staging/rtl8192e/rtllib_module.c
index bb13b1de2797..64d9feee1f39 100644
--- a/drivers/staging/rtl8192e/rtllib_module.c
+++ b/drivers/staging/rtl8192e/rtllib_module.c
@@ -83,7 +83,6 @@ struct net_device *alloc_rtllib(int sizeof_priv)
return NULL;
}
ieee = (struct rtllib_device *)netdev_priv_rsl(dev);
- memset(ieee, 0, sizeof(struct rtllib_device) + sizeof_priv);
ieee->dev = dev;
err = rtllib_networks_allocate(ieee);