Files
linux/drivers/net
Varsha Rao b8aac410b7 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>
2018-06-04 17:07:27 -04:00
..
2018-05-24 22:55:07 -04:00
2018-03-27 13:18:09 -04:00
2018-05-28 23:02:22 -04:00
2018-03-27 13:18:09 -04:00
2018-05-28 22:59:54 -04:00
2018-02-11 14:34:03 -08:00
2018-04-17 13:53:13 -04:00