linux-stable/drivers/staging/gdm72xx
Somya Anand 87e3dbc27c Staging: gdm72xx: use !x instead of x == NULL
Functions like devm_kzalloc, kmalloc_array, devm_ioremap,
usb_alloc_urb, alloc_netdev return NULL as a return value on failure.
Generally, When NULL represents failure, !x is commonly used.

This patch cleans up the tests on the results of these functions, thereby
using !x instead of x == NULL or NULL == x. This is done via following
coccinelle script:
@prob_7@
identifier x;
statement S;
@@

(
 x = devm_kzalloc(...);
|
 x = usb_alloc_urb(...);
|
 x = kmalloc_array(...);
|
 x = devm_ioremap(...);
|
 x = alloc_netdev(...);
)
 ...
- if(NULL == x)
+ if(!x)
        S
Further we have used isomorphism characteristics of coccinelle to
indicate x == NULL and NULL == x are equivalent. This is done via
following iso script.

Expression
@ is_null @ expression X; @@
X == NULL <=> NULL == X

Signed-off-by: Somya Anand <somyaanand214@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2015-03-16 16:28:47 +01:00
..
Kconfig PM / Kconfig: Replace PM_RUNTIME with PM in dependencies 2014-12-13 00:44:04 +01:00
Makefile
TODO
gdm_qos.c staging: gdm72xx: Condense two statements into one to improve code readability. 2015-03-01 16:57:36 -08:00
gdm_qos.h staging: gdm72xx: use consistent style for header guards 2014-07-09 11:49:15 -07:00
gdm_sdio.c Staging: gdm72xx: clean dev_err logging 2015-03-06 15:55:36 -08:00
gdm_sdio.h staging: gdm72xx: use consistent style for header guards 2014-07-09 11:49:15 -07:00
gdm_usb.c staging: gdm72xx: replace print_hex_dump_debug() with dev_dbg() 2014-07-17 18:07:30 -07:00
gdm_usb.h staging: gdm72xx: use consistent style for header guards 2014-07-09 11:49:15 -07:00
gdm_wimax.c Staging: gdm72xx: use !x instead of x == NULL 2015-03-16 16:28:47 +01:00
gdm_wimax.h staging: gdm72xx: Use net_device_stats from struct net_device 2014-07-09 11:57:16 -07:00
hci.h staging: gdm72xx: move T_CAPABILITY definitions to hci.h 2014-07-09 21:16:52 -07:00
netlink_k.c drivers: staging: gdm72xx: Removed unnecessary braces. 2014-09-28 23:27:35 -04:00
netlink_k.h staging: gdm72xx: use consistent style for header guards 2014-07-09 11:49:15 -07:00
sdio_boot.c
sdio_boot.h staging: gdm72xx: use consistent style for header guards 2014-07-09 11:49:15 -07:00
usb_boot.c staging: gdm72xx: clean up endianness conversions 2014-07-09 11:49:16 -07:00
usb_boot.h staging: gdm72xx: use consistent style for header guards 2014-07-09 11:49:15 -07:00
usb_ids.h staging: gdm72xx: use consistent style for header guards 2014-07-09 11:49:15 -07:00
wm_ioctl.h staging: gdm72xx: use consistent style for header guards 2014-07-09 11:49:15 -07:00