]> git.karo-electronics.de Git - karo-tx-linux.git/commit
Staging: rtl8188eu: os_dep: recv_linux.c: Remove explicit NULL comparison
authorShraddha Barke <shraddha.6596@gmail.com>
Fri, 11 Sep 2015 05:10:57 +0000 (10:40 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 13 Sep 2015 01:25:01 +0000 (18:25 -0700)
commitfc749a9a3d1801c8dee892816eb19d285e06fd41
treec51169e588f669a1c12c8da23cfd844641bc1c7d
parentb210e0dc6056953f54bb539630c5e0db2b0b9026
Staging: rtl8188eu: os_dep: recv_linux.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/os_dep/recv_linux.c