mirror of
https://github.com/torvalds/linux.git
synced 2024-11-15 08:31:55 +00:00
87e3dbc27c
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> |
||
---|---|---|
.. | ||
gdm_qos.c | ||
gdm_qos.h | ||
gdm_sdio.c | ||
gdm_sdio.h | ||
gdm_usb.c | ||
gdm_usb.h | ||
gdm_wimax.c | ||
gdm_wimax.h | ||
hci.h | ||
Kconfig | ||
Makefile | ||
netlink_k.c | ||
netlink_k.h | ||
sdio_boot.c | ||
sdio_boot.h | ||
TODO | ||
usb_boot.c | ||
usb_boot.h | ||
usb_ids.h | ||
wm_ioctl.h |