staging: rtl8192e: Standardize test for NULL.
authorElise Lennion <elise.lennion@gmail.com>
Sat, 29 Oct 2016 00:29:21 +0000 (22:29 -0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 30 Oct 2016 15:09:03 +0000 (11:09 -0400)
commit15ed5398c94c8e29ee11022926351cb77cf70e7f
tree40179e06ab132a4eed8c8854d5fe6b55f2e27f72
parent7dd448f0986a9c2cf076ca0bea7c9be967e7fe07
staging: rtl8192e: Standardize test for NULL.

The test for NULL of the return variable of functions was changed from
(ret == NULL) to !ret to match the standard.

Coccinelle was used with semantic patch:
@@
expression e;
identifier id, f;
statement S;
@@

f(...) { <+...

id =
\(kmalloc\|devm_kzalloc\|kmalloc_array\|devm_ioremap
\|usb_alloc_urb\|alloc_netdev\|dev_alloc_skb\) (...)

... when any
    when != id = e

+ if (!id)
- if (\(NULL == id\|id == NULL\))
S

...+> }

Signed-off-by: Elise Lennion <elise.lennion@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8192e/rtl8192e/r8192E_cmdpkt.c
drivers/staging/rtl8192e/rtllib_rx.c