Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 61960
b: refs/heads/master
c: a95a038
h: refs/heads/master
v: v3
  • Loading branch information
Greg Kroah-Hartman committed Jul 20, 2007
1 parent d29ae95 commit 354cdb1
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 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: 2fe8c3f1538e8db2b853f10480584679b0c336f1
refs/heads/master: a95a03811beb4ac4b9ac4a39486b912d07d64d64
13 changes: 7 additions & 6 deletions trunk/drivers/usb/misc/phidgetmotorcontrol.c
Original file line number Diff line number Diff line change
Expand Up @@ -95,9 +95,10 @@ static void motorcontrol_irq(struct urb *urb)
struct motorcontrol *mc = urb->context;
unsigned char *buffer = mc->data;
int i, level;
int status;
int retval;
int status = urb->status;;

switch (urb->status) {
switch (status) {
case 0: /* success */
break;
case -ECONNRESET: /* unlink */
Expand Down Expand Up @@ -151,12 +152,12 @@ static void motorcontrol_irq(struct urb *urb)
schedule_delayed_work(&mc->do_notify, 0);

resubmit:
status = usb_submit_urb(urb, GFP_ATOMIC);
if (status)
retval = usb_submit_urb(urb, GFP_ATOMIC);
if (retval)
dev_err(&mc->intf->dev,
"can't resubmit intr, %s-%s/motorcontrol0, status %d",
"can't resubmit intr, %s-%s/motorcontrol0, retval %d",
mc->udev->bus->bus_name,
mc->udev->devpath, status);
mc->udev->devpath, retval);
}

static void do_notify(struct work_struct *work)
Expand Down

0 comments on commit 354cdb1

Please sign in to comment.