commit | 6dc5aa212321c87a79746980eb258912bcf352ba | [log] [tgz] |
---|---|---|
author | Varsha Rao <rvarsha016@gmail.com> | Sun Jun 03 17:19:04 2018 +0530 |
committer | David S. Miller <davem@davemloft.net> | Mon Jun 04 17:07:27 2018 -0400 |
tree | 18b790ac118c9f07d21c6eb6b34afe4bad3cfd74 | |
parent | 13ce3bc9c1b43566a31d3edc857a5950b2e77bd8 [diff] |
net: ethernet: bnx2: Remove extra parentheses The following coccinelle script removes extra parentheses to fix the clang warning of extraneous parentheses. @disable paren@ identifier i; expression e; statement s; @@ if ( -(i == e) +i == e ) s Suggested-by: Lukas Bulwahn <lukas.bulwahn@gmail.com> Signed-off-by: Varsha Rao <rvarsha016@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>