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

Commit d1c95b0e authored by Markus Elfring's avatar Markus Elfring Committed by Doug Ledford
Browse files

IB/ocrdma: Skip using unneeded intermediate variable



Return zero at the end without using the local variable "status".

Signed-off-by: default avatarMarkus Elfring <elfring@users.sourceforge.net>
Signed-off-by: default avatarDoug Ledford <dledford@redhat.com>
parent 0ca4c39f
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -2141,7 +2141,6 @@ int ocrdma_qp_state_change(struct ocrdma_qp *qp, enum ib_qp_state new_ib_state,
			   enum ib_qp_state *old_ib_state)
{
	unsigned long flags;
	int status = 0;
	enum ocrdma_qp_state new_state;
	new_state = get_ocrdma_qp_state(new_ib_state);

@@ -2166,7 +2165,7 @@ int ocrdma_qp_state_change(struct ocrdma_qp *qp, enum ib_qp_state new_ib_state,
	qp->state = new_state;

	spin_unlock_irqrestore(&qp->q_lock, flags);
	return status;
	return 0;
}

static u32 ocrdma_set_create_qp_mbx_access_flags(struct ocrdma_qp *qp)