Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 155610
b: refs/heads/master
c: 70a6f2e
h: refs/heads/master
v: v3
  • Loading branch information
Michael Gruber authored and Dmitry Torokhov committed Jul 13, 2009
1 parent 4cc2699 commit b3417e4
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 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: e705cee427e319665969ef7ac664f3612dec8899
refs/heads/master: 70a6f2e6d6b8653d394b63210ec57b4c78f3dcd8
26 changes: 13 additions & 13 deletions trunk/drivers/input/joystick/xpad.c
Original file line number Diff line number Diff line change
Expand Up @@ -470,20 +470,20 @@ static void xpad_irq_out(struct urb *urb)
status = urb->status;

switch (status) {
case 0:
case 0:
/* success */
break;
case -ECONNRESET:
case -ENOENT:
case -ESHUTDOWN:
/* this urb is terminated, clean up */
dbg("%s - urb shutting down with status: %d",
__func__, status);
return;
default:
dbg("%s - nonzero urb status received: %d",
__func__, status);
goto exit;
return;

case -ECONNRESET:
case -ENOENT:
case -ESHUTDOWN:
/* this urb is terminated, clean up */
dbg("%s - urb shutting down with status: %d", __func__, status);
return;

default:
dbg("%s - nonzero urb status received: %d", __func__, status);
goto exit;
}

exit:
Expand Down

0 comments on commit b3417e4

Please sign in to comment.