diff options
author | Bart Van Assche <bart.vanassche@wdc.com> | 2017-10-11 20:49:03 +0300 |
---|---|---|
committer | Doug Ledford <dledford@redhat.com> | 2017-10-15 03:47:06 +0300 |
commit | ad4d63401008ea9ac6c5b1613d86c756c6ab9a2a (patch) | |
tree | 26bd43af680a5578b8fe1449b438856e882eb956 /drivers/infiniband/hw/i40iw/i40iw_puda.c | |
parent | b965b51c55c5a21d65ca36592c6048ea60c3ace9 (diff) | |
download | linux-ad4d63401008ea9ac6c5b1613d86c756c6ab9a2a.tar.xz |
RDMA/i40iw: Suppress gcc 7 fall-through complaints
Avoid that gcc 7 reports the following warning when building with W=1:
warning: this statement may fall through [-Wimplicit-fallthrough=]
Signed-off-by: Bart Van Assche <bart.vanassche@wdc.com>
Reviewed-by: Shiraz Saleem <shiraz.saleem@intel.com>
Signed-off-by: Doug Ledford <dledford@redhat.com>
Diffstat (limited to 'drivers/infiniband/hw/i40iw/i40iw_puda.c')
-rw-r--r-- | drivers/infiniband/hw/i40iw/i40iw_puda.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/infiniband/hw/i40iw/i40iw_puda.c b/drivers/infiniband/hw/i40iw/i40iw_puda.c index c2cab20c4bc5..2a3bf6488b4b 100644 --- a/drivers/infiniband/hw/i40iw/i40iw_puda.c +++ b/drivers/infiniband/hw/i40iw/i40iw_puda.c @@ -816,6 +816,7 @@ void i40iw_puda_dele_resources(struct i40iw_sc_vsi *vsi, switch (rsrc->completion) { case PUDA_HASH_CRC_COMPLETE: i40iw_free_hash_desc(rsrc->hash_desc); + /* fall through */ case PUDA_QP_CREATED: if (!reset) i40iw_puda_free_qp(rsrc); |