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

Commit d562a5ae authored by Bryan O'Sullivan's avatar Bryan O'Sullivan Committed by Roland Dreier
Browse files

IB/ipath: fix label name in interrupt handler



Names that are the opposite of their intended meanings are not so helpful.

Signed-off-by: default avatarBryan O'Sullivan <bos@pathscale.com>
Signed-off-by: default avatarRoland Dreier <rolandd@cisco.com>
parent ae15f540
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -665,14 +665,14 @@ static void handle_layer_pioavail(struct ipath_devdata *dd)

	ret = __ipath_layer_intr(dd, IPATH_LAYER_INT_SEND_CONTINUE);
	if (ret > 0)
		goto clear;
		goto set;

	ret = __ipath_verbs_piobufavail(dd);
	if (ret > 0)
		goto clear;
		goto set;

	return;
clear:
set:
	set_bit(IPATH_S_PIOINTBUFAVAIL, &dd->ipath_sendctrl);
	ipath_write_kreg(dd, dd->ipath_kregs->kr_sendctrl,
			 dd->ipath_sendctrl);