diff options
author | Varsha Rao <rvarsha016@gmail.com> | 2018-06-03 17:19:52 +0530 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-06-04 17:07:27 -0400 |
commit | b8aac410b76058bc00fff9398d273566fac921cf (patch) | |
tree | f98ff30e4915406ee6d0162b52387c536e8b5381 /net/ipv4/tcp_ipv4.c | |
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 <rvarsha016@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/tcp_ipv4.c')
0 files changed, 0 insertions, 0 deletions