diff options
| author | Joe Perches <[email protected]> | 2012-02-09 11:17:23 +0000 |
|---|---|---|
| committer | David S. Miller <[email protected]> | 2012-02-13 00:47:40 -0500 |
| commit | 23677ce3172fcb93522a1df077d21019e73ee1e3 (patch) | |
| tree | 9558b9c1f24d03d612f4bae999d453ae7ec637d6 /tools/perf/scripts/python | |
| parent | 1a0d6ae5795c376bae6d012fb25e8341e4c6d5f2 (diff) | |
drivers/net: Remove boolean comparisons to true/false
Booleans should not be compared to true or false
but be directly tested or tested with !.
Done via cocci script:
@@
bool t;
@@
- t == true
+ t
@@
bool t;
@@
- t != true
+ !t
@@
bool t;
@@
- t == false
+ !t
@@
bool t;
@@
- t != false
+ t
Signed-off-by: Joe Perches <[email protected]>
Reviewed-by: Jeff Kirsher <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
Diffstat (limited to 'tools/perf/scripts/python')
0 files changed, 0 insertions, 0 deletions