commit | b8aac410b76058bc00fff9398d273566fac921cf | [log] [tgz] |
---|---|---|
author | Varsha Rao <rvarsha016@gmail.com> | Sun Jun 03 17:19:52 2018 +0530 |
committer | David S. Miller <davem@davemloft.net> | Mon Jun 04 17:07:27 2018 -0400 |
tree | f98ff30e4915406ee6d0162b52387c536e8b5381 | |
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>