]> git.baikalelectronics.ru Git - kernel.git/commit
mwifiex: remove unnecessary call to memset
authorHimanshu Jha <himanshujha199640@gmail.com>
Mon, 11 Sep 2017 12:46:04 +0000 (18:16 +0530)
committerKalle Valo <kvalo@codeaurora.org>
Wed, 20 Sep 2017 12:46:59 +0000 (15:46 +0300)
commita6871101ad0ba889e2bcbbd187f18de40ae6e292
tree5fb5eb02c992b646391fbb4e0b112c97cb92de0c
parent28613ea123889dd65ab96e2c648dde014b867c01
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>
drivers/net/wireless/marvell/mwifiex/scan.c