diff options
| author | Amitoj Kaur Chawla <[email protected]> | 2015-04-01 00:52:18 +0530 |
|---|---|---|
| committer | Greg Kroah-Hartman <[email protected]> | 2015-04-01 17:26:58 +0200 |
| commit | 5c7d08c32d0cb96ec0e831539bb68b7fe5b45973 (patch) | |
| tree | 33b7685e7765cb154715e1021ac96b4b1e98957e /tools/perf/scripts/python | |
| parent | b6955a8f4350686321ccc4efd2b2333d91c5c2f5 (diff) | |
Staging: rtl8712: Remove zero-testing pointer typed value
Removes variable comparison with 0 by using !. Done using following
coccinelle script.
@ disable is_zero,isnt_zero @
expression *E;
expression E1,f;
@@
E = f(...)
<...
(
- E == 0
+ !E
|
- E != 0
+ E
|
- 0 == E
+ !E
|
- 0 != E
+ E
)
...>
?E = E1
@ disable is_zero,isnt_zero @
expression *E;
@@
(
E ==
- 0
+ NULL
|
E !=
- 0
+ NULL
|
- 0
+ NULL
== E
|
- 0
+ NULL
!= E
)
Signed-off-by: Amitoj Kaur Chawla <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
Diffstat (limited to 'tools/perf/scripts/python')
0 files changed, 0 insertions, 0 deletions