linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH hw-next] infiniband/hw:remove unneeded variable
@ 2021-12-10  2:17 cgel.zte
  0 siblings, 0 replies; only message in thread
From: cgel.zte @ 2021-12-10  2:17 UTC (permalink / raw)
  To: mustafa.ismail
  Cc: shiraz.saleem, dledford, jgg, linux-rdma, linux-kernel,
	Minghao Chi, Zeal Robot

From: Minghao Chi <chi.minghao@zte.com.cn>

Return status directly from function called.

Reported-by: Zeal Robot <zealci@zte.com.cm>
Signed-off-by: Minghao Chi <chi.minghao@zte.com.cn>
---
 drivers/infiniband/hw/irdma/uk.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/drivers/infiniband/hw/irdma/uk.c b/drivers/infiniband/hw/irdma/uk.c
index 57a9444e9ea7..fe2ba1dd1b03 100644
--- a/drivers/infiniband/hw/irdma/uk.c
+++ b/drivers/infiniband/hw/irdma/uk.c
@@ -244,7 +244,6 @@ __le64 *irdma_qp_get_next_send_wqe(struct irdma_qp_uk *qp, u32 *wqe_idx,
  */
 __le64 *irdma_qp_get_next_recv_wqe(struct irdma_qp_uk *qp, u32 *wqe_idx)
 {
-	__le64 *wqe;
 	enum irdma_status_code ret_code;
 
 	if (IRDMA_RING_FULL_ERR(qp->rq_ring))
@@ -257,9 +256,8 @@ __le64 *irdma_qp_get_next_recv_wqe(struct irdma_qp_uk *qp, u32 *wqe_idx)
 	if (!*wqe_idx)
 		qp->rwqe_polarity = !qp->rwqe_polarity;
 	/* rq_wqe_size_multiplier is no of 32 byte quanta in one rq wqe */
-	wqe = qp->rq_base[*wqe_idx * qp->rq_wqe_size_multiplier].elem;
 
-	return wqe;
+	return qp->rq_base[*wqe_idx * qp->rq_wqe_size_multiplier].elem;
 }
 
 /**
-- 
2.25.1


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2021-12-10  2:17 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-12-10  2:17 [PATCH hw-next] infiniband/hw:remove unneeded variable cgel.zte

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).