diff options
| author | Nathan Chancellor <[email protected]> | 2018-09-19 20:29:57 -0700 |
|---|---|---|
| committer | Doug Ledford <[email protected]> | 2018-09-21 12:00:50 -0400 |
| commit | b9f86e6e7b755951af3c57f7864c57eeb98303eb (patch) | |
| tree | c469db177d0e587fc90c516d66b324c2bfc0e591 /tools/perf/scripts/python/bin/stackcollapse-report | |
| parent | 2a3ccfdbeb6a5f832d7203e230799f1ffa46e0fc (diff) | |
IB/nes: Remove unnecessary parentheses
Clang warns when more than one set of parentheses are used in single
conditional statements.
drivers/infiniband/hw/nes/nes_hw.c:1446:27: warning: equality comparison
with extraneous parentheses [-Wparentheses-equality]
} while ((temp_phy_data2 == temp_phy_data));
~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
drivers/infiniband/hw/nes/nes_hw.c:1446:27: note: remove extraneous
parentheses around the comparison to silence this warning
} while ((temp_phy_data2 == temp_phy_data));
~ ^ ~
drivers/infiniband/hw/nes/nes_hw.c:1446:27: note: use '=' to turn this
equality comparison into an assignment
} while ((temp_phy_data2 == temp_phy_data));
^~
=
Remove the unnecessary parentheses to silence this warning.
Reported-by: Nick Desaulniers <[email protected]>
Signed-off-by: Nathan Chancellor <[email protected]>
Reviewed-by: Nick Desaulniers <[email protected]>
Signed-off-by: Doug Ledford <[email protected]>
Diffstat (limited to 'tools/perf/scripts/python/bin/stackcollapse-report')
0 files changed, 0 insertions, 0 deletions