diff options
author | Varsha Rao <[email protected]> | 2018-06-03 17:19:52 +0530 |
---|---|---|
committer | David S. Miller <[email protected]> | 2018-06-04 17:07:27 -0400 |
commit | b8aac410b76058bc00fff9398d273566fac921cf (patch) | |
tree | f98ff30e4915406ee6d0162b52387c536e8b5381 /scripts/bpf_helpers_doc.py | |
parent | 6dc5aa212321c87a79746980eb258912bcf352ba (diff) |
net: ethernet: bnx2: Replace NULL comparison
This patch fixes the checkpatch issue of NULL comparison. Replace x == NULL
with !x, by using the following coccinelle script:
@disable is_null@
expression e;
@@
-e==NULL
+!e
Signed-off-by: Varsha Rao <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
Diffstat (limited to 'scripts/bpf_helpers_doc.py')
0 files changed, 0 insertions, 0 deletions