aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/infiniband
diff options
context:
space:
mode:
authorBart Van Assche <bart.vanassche@wdc.com>2018-07-18 08:58:02 -0700
committerJason Gunthorpe <jgg@mellanox.com>2018-07-23 15:36:23 -0600
commitacd4307a21b5a9a7761aa55a5f5ca46cbd43f108 (patch)
tree3fa8ad6bf369d0290d3125499711e8834e031473 /drivers/infiniband
parentRDMA/mlx5: Remove set but not used variables (diff)
downloadlinux-dev-acd4307a21b5a9a7761aa55a5f5ca46cbd43f108.tar.xz
linux-dev-acd4307a21b5a9a7761aa55a5f5ca46cbd43f108.zip
RDMA/bnxt_re: Modify a fall-through annotation
This patch avoids that gcc reports the following warning when building with W=1: drivers/infiniband/hw/bnxt_re/ib_verbs.c:2404:4: warning: this statement may fall through [-Wimplicit-fallthrough=] Signed-off-by: Bart Van Assche <bart.vanassche@wdc.com> Signed-off-by: Jason Gunthorpe <jgg@mellanox.com>
Diffstat (limited to 'drivers/infiniband')
-rw-r--r--drivers/infiniband/hw/bnxt_re/ib_verbs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/infiniband/hw/bnxt_re/ib_verbs.c b/drivers/infiniband/hw/bnxt_re/ib_verbs.c
index 492c750f7ed6..dd800d153aa2 100644
--- a/drivers/infiniband/hw/bnxt_re/ib_verbs.c
+++ b/drivers/infiniband/hw/bnxt_re/ib_verbs.c
@@ -2409,7 +2409,7 @@ int bnxt_re_post_send(struct ib_qp *ib_qp, struct ib_send_wr *wr,
default:
break;
}
- /* Fall thru to build the wqe */
+ /* fall through */
case IB_WR_SEND_WITH_INV:
rc = bnxt_re_build_send_wqe(qp, wr, &wqe);
break;