mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-26 07:55:03 +07:00
mwifiex: remove unnecessary call to memset
call to memset to assign 0 value immediately after allocating memory with kzalloc is unnecesaary as kzalloc allocates the memory filled with 0 value. Semantic patch used to resolve this issue: @@ expression e,e2; constant c; statement S; @@ e = kzalloc(e2, c); if(e == NULL) S - memset(e, 0, e2); Signed-off-by: Himanshu Jha <himanshujha199640@gmail.com> Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
This commit is contained in:
parent
26177d7f39
commit
85dafc1291
@ -1936,8 +1936,6 @@ mwifiex_active_scan_req_for_passive_chan(struct mwifiex_private *priv)
|
||||
if (!user_scan_cfg)
|
||||
return -ENOMEM;
|
||||
|
||||
memset(user_scan_cfg, 0, sizeof(*user_scan_cfg));
|
||||
|
||||
for (id = 0; id < MWIFIEX_USER_SCAN_CHAN_MAX; id++) {
|
||||
if (!priv->hidden_chan[id].chan_number)
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user