diff options
| author | Gargi Sharma <gs051095@gmail.com> | 2017-02-23 23:28:18 +0300 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2017-03-06 11:17:02 +0300 |
| commit | 47db0f6c9a2210dc5a7c45551d63d7d69b5600a6 (patch) | |
| tree | 47389bdc6bac6217f480a05cff584453c9d0bdb4 /scripts/stackdelta | |
| parent | 1ee64912417a1021924c99f4c808cb1fffec55d1 (diff) | |
| download | linux-47db0f6c9a2210dc5a7c45551d63d7d69b5600a6.tar.xz | |
staging: vc04_services: Remove explicit NULL comparison
Replace explicit NULL comparison with ! operator to
simplify code.
Found with Coccinelle script:
@@
expression ptr;
position p;
statement s0, s1;
@@
ptr@p =
\(kmalloc\|devm_kzalloc\|kmalloc_array\|devm_ioremap\|usb_alloc_urb\|
alloc_netdev\|dev_alloc_skb\)(...)
... when != ptr
if (
(
+ !
ptr
- == NULL
)
) s0 else s1
Signed-off-by: Gargi Sharma <gs051095@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'scripts/stackdelta')
0 files changed, 0 insertions, 0 deletions
