Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 235397
b: refs/heads/master
c: d3cf2a8
h: refs/heads/master
i:
  235395: 3fef05d
v: v3
  • Loading branch information
Arvid Brodin authored and Greg Kroah-Hartman committed Mar 7, 2011
1 parent a86a80d commit b2ecd8f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 9b37596a2e860404503a3f2a6513db60c296bfdc
refs/heads/master: d3cf2a8d4ddd121dbf4ad48c995648af04e0cfbf
7 changes: 3 additions & 4 deletions trunk/drivers/usb/host/isp1760-hcd.c
Original file line number Diff line number Diff line change
Expand Up @@ -1624,14 +1624,14 @@ static int isp1760_urb_dequeue(struct usb_hcd *hcd, struct urb *urb, int status)

ptd_write(hcd->regs, reg_base, i, &ptd);

qtd = ints->qtd;
qtd = ints[i].qtd;
qh = ints[i].qh;

free_mem(hcd, qtd);
qtd = clean_up_qtdlist(qtd, qh);

ints->qh = NULL;
ints->qtd = NULL;
ints[i].qh = NULL;
ints[i].qtd = NULL;

isp1760_urb_done(hcd, urb);
if (qtd)
Expand All @@ -1655,7 +1655,6 @@ static int isp1760_urb_dequeue(struct usb_hcd *hcd, struct urb *urb, int status)
if (!qtd)
break;
}
ints++;
}

spin_unlock_irqrestore(&priv->lock, flags);
Expand Down

0 comments on commit b2ecd8f

Please sign in to comment.