]> git.karo-electronics.de Git - karo-tx-linux.git/commit
Staging: rtl8188eu: hal: rtl8188eu_xmit.c: Remove explicit NULL comparison
authorShraddha Barke <shraddha.6596@gmail.com>
Fri, 11 Sep 2015 05:10:56 +0000 (10:40 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 13 Sep 2015 01:25:01 +0000 (18:25 -0700)
commitb210e0dc6056953f54bb539630c5e0db2b0b9026
tree3df595d0629659a88d7f3b2dc2571b4a83c278d3
parentcfd23644a87d9b6b0917c72418c5966520fd4e5a
Staging: rtl8188eu: hal: rtl8188eu_xmit.c: Remove explicit NULL comparison

Remove explicit NULL comparison and write it in its simpler form.
Replacement done with coccinelle:

@replace_rule@
expression e;
@@

-e == NULL
+ !e

Signed-off-by: Shraddha Barke <shraddha.6596@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8188eu/hal/rtl8188eu_xmit.c