Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 19214
b: refs/heads/master
c: a3673d3
h: refs/heads/master
v: v3
  • Loading branch information
Duncan Sands authored and Greg Kroah-Hartman committed Feb 1, 2006
1 parent 5a8197a commit fca3db5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 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: 9b0e54addf3ea8488c7b57166fb38feeb8ea28fd
refs/heads/master: a3673d3cd1cdeec6b503ffa418ca2d5aeff82fd7
5 changes: 4 additions & 1 deletion trunk/drivers/usb/atm/usbatm.c
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,10 @@ static void usbatm_complete(struct urb *urb, struct pt_regs *regs)

spin_unlock_irqrestore(&channel->lock, flags);

if (unlikely(urb->status)) {
if (unlikely(urb->status) &&
(!(channel->usbatm->flags & UDSL_IGNORE_EILSEQ) ||
urb->status != -EILSEQ ))
{
if (printk_ratelimit())
atm_warn(channel->usbatm, "%s: urb 0x%p failed (%d)!\n",
__func__, urb, urb->status);
Expand Down
1 change: 1 addition & 0 deletions trunk/drivers/usb/atm/usbatm.h
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@

#define UDSL_SKIP_HEAVY_INIT (1<<0)
#define UDSL_USE_ISOC (1<<1)
#define UDSL_IGNORE_EILSEQ (1<<2)


/* mini driver */
Expand Down

0 comments on commit fca3db5

Please sign in to comment.