staging: rtl8723bs: hal: Remove NULL check before kfree
authorSimran Singhal <singhalsimran0@gmail.com>
Thu, 26 Mar 2020 13:28:23 +0000 (18:58 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 26 Mar 2020 14:47:26 +0000 (15:47 +0100)
commitb67b7b0465ff9cf89c11dd383d2888b29531f096
treec449136411bd2e4a503d1fbe86324c174c8d9e5f
parent1879d30ede2f778a8d9f147a32fc5c9f5bb90b44
staging: rtl8723bs: hal: Remove NULL check before kfree

NULL check before kfree is unnecessary so remove it.

The following Coccinelle script was used to detect this:
@@ expression E; @@
- if (E != NULL) { kfree(E); }
+ kfree(E);
@@ expression E; @@
- if (E != NULL) { kfree(E); E = NULL; }
+ kfree(E);
+ E = NULL;

Signed-off-by: Simran Singhal <singhalsimran0@gmail.com>
Link: https://lore.kernel.org/r/20200326132823.GA18625@simran-Inspiron-5558
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8723bs/hal/rtl8723bs_recv.c