diff options
| author | Bhaktipriya Shridhar <[email protected]> | 2016-03-22 20:26:33 +0530 |
|---|---|---|
| committer | Greg Kroah-Hartman <[email protected]> | 2016-03-28 07:30:36 -0700 |
| commit | 6e9aeda3fa6fb1462cfc3d188ecfa734b1af6b21 (patch) | |
| tree | fc542ad9ad58e76dcfd61ab7d36d8ad4e0e043b4 /tools/perf/scripts/python | |
| parent | a703f4726583318b24f76bb6bc61d46a5319f248 (diff) | |
staging: rtl8188eu: core: rtw_mlme: Clean up tests if NULL returned on failure
Some functions like kmalloc/kzalloc return NULL on failure.
When NULL represents failure, !x is commonly used.
This was done using Coccinelle:
@@
expression *e;
identifier l1;
@@
e = \(kmalloc\|kzalloc\|kcalloc\|devm_kzalloc\)(...);
...
- e == NULL
+ !e
Signed-off-by: Bhaktipriya Shridhar <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
Diffstat (limited to 'tools/perf/scripts/python')
0 files changed, 0 insertions, 0 deletions