Commit 2f5833ea authored by Minjie Du's avatar Minjie Du Committed by Leon Romanovsky
Browse files

RDMA/qedr: Remove a duplicate assignment in qedr_create_gsi_qp()



Delete a duplicate statement from this function implementation.

Signed-off-by: default avatarMinjie Du <duminjie@vivo.com>
Link: https://lore.kernel.org/r/20230705103950.15225-1-duminjie@vivo.com


Acked-by: default avatarAlok Prasad <palok@marvell.com>
Signed-off-by: default avatarLeon Romanovsky <leon@kernel.org>
parent 61a8118f
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -354,7 +354,6 @@ int qedr_create_gsi_qp(struct qedr_dev *dev, struct ib_qp_init_attr *attrs,
	/* the GSI CQ is handled by the driver so remove it from the FW */
	qedr_destroy_gsi_cq(dev, attrs);
	dev->gsi_rqcq->cq_type = QEDR_CQ_TYPE_GSI;
	dev->gsi_rqcq->cq_type = QEDR_CQ_TYPE_GSI;

	DP_DEBUG(dev, QEDR_MSG_GSI, "created GSI QP %p\n", qp);