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

Commit 82210d37 authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman
Browse files

USB: misc: uss720: clean up urb->status usage



This done in anticipation of removal of urb->status, which will make
that patch easier to review and apply in the future.

Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 59d99785
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -111,12 +111,13 @@ static void async_complete(struct urb *urb)
	struct uss720_async_request *rq;
	struct parport *pp;
	struct parport_uss720_private *priv;
	int status = urb->status;

	rq = urb->context;
	priv = rq->priv;
	pp = priv->pp;
	if (urb->status) {
		err("async_complete: urb error %d", urb->status);
	if (status) {
		err("async_complete: urb error %d", status);
	} else if (rq->dr.bRequest == 3) {
		memcpy(priv->reg, rq->reg, sizeof(priv->reg));
#if 0