Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7810e09b authored by Bart Van Assche's avatar Bart Van Assche Committed by Jason Gunthorpe
Browse files

rdma/cxgb4: Remove a set-but-not-used variable



This patch avoids that the following warning is reported when building with
W=1:

drivers/infiniband/hw/cxgb4/cm.c:1860:5: warning: variable 'status' set but not used [-Wunused-but-set-variable]
  u8 status;
     ^~~~~~

Fixes: 6a0b6174 ("rdma/cxgb4: Add support for kernel mode SRQ's")
Signed-off-by: default avatarBart Van Assche <bart.vanassche@wdc.com>
Acked-by: default avatarSteve Wise <swise@opengridcomputing.com>
Signed-off-by: default avatarJason Gunthorpe <jgg@mellanox.com>
parent 85463316
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -1857,10 +1857,8 @@ static void complete_cached_srq_buffers(struct c4iw_ep *ep, u32 srqidx_status)
{
	enum chip_type adapter_type;
	u32 srqidx;
	u8 status;

	adapter_type = ep->com.dev->rdev.lldi.adapter_type;
	status = ABORT_RSS_STATUS_G(be32_to_cpu(srqidx_status));
	srqidx = ABORT_RSS_SRQIDX_G(be32_to_cpu(srqidx_status));

	/*