IB/mlx4: Remove unnecessary parentheses
authorNathan Chancellor <natechancellor@gmail.com>
Thu, 20 Sep 2018 03:32:29 +0000 (20:32 -0700)
committerDoug Ledford <dledford@redhat.com>
Fri, 21 Sep 2018 16:00:50 +0000 (12:00 -0400)
Clang warns when more than one set of parentheses are used in single
conditional statements.

drivers/infiniband/hw/mlx4/mcg.c:676:16: warning: equality comparison
with extraneous parentheses [-Wparentheses-equality]
                        if ((method == IB_MGMT_METHOD_GET_RESP)) {
                             ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~
drivers/infiniband/hw/mlx4/mcg.c:676:16: note: remove extraneous
parentheses around the comparison to silence this warning
                        if ((method == IB_MGMT_METHOD_GET_RESP)) {
                            ~       ^                         ~
drivers/infiniband/hw/mlx4/mcg.c:676:16: note: use '=' to turn this
equality comparison into an assignment
                        if ((method == IB_MGMT_METHOD_GET_RESP)) {
                                    ^~
                                    =

Remove the unnecessary parentheses to silence this warning.

Reported-by: Nick Desaulniers <ndesaulniers@google.com>
Signed-off-by: Nathan Chancellor <natechancellor@gmail.com>
Reviewed-by: Leon Romanovsky <leonro@mellanox.com>
Signed-off-by: Doug Ledford <dledford@redhat.com>
drivers/infiniband/hw/mlx4/mcg.c

index 81ffc007e0a1d9ba122288eb25d62912798e6360..d844831179cf7c200e7d9ce15493b63557ad0193 100644 (file)
@@ -673,7 +673,7 @@ static void mlx4_ib_mcg_work_handler(struct work_struct *work)
                        if (!list_empty(&group->pending_list))
                                req = list_first_entry(&group->pending_list,
                                                struct mcast_req, group_list);
-                       if ((method == IB_MGMT_METHOD_GET_RESP)) {
+                       if (method == IB_MGMT_METHOD_GET_RESP) {
                                        if (req) {
                                                send_reply_to_slave(req->func, group, &req->sa_mad, status);
                                                --group->func[req->func].num_pend_reqs;