Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 61963
b: refs/heads/master
c: 82210d3
h: refs/heads/master
i:
  61961: 3bc6a02
  61959: d29ae95
v: v3
  • Loading branch information
Greg Kroah-Hartman committed Jul 20, 2007
1 parent e4df5a9 commit feecc14
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 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: 59d99785a9f8294f9e38ac677df8526e44462f66
refs/heads/master: 82210d377468f59745303b96473e30e60b33434d
5 changes: 3 additions & 2 deletions trunk/drivers/usb/misc/uss720.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit feecc14

Please sign in to comment.