diff options
-rw-r--r-- | drivers/usb/core/message.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/usb/core/message.c b/drivers/usb/core/message.c index 74197249c245..c47c8052b486 100644 --- a/drivers/usb/core/message.c +++ b/drivers/usb/core/message.c | |||
@@ -265,7 +265,9 @@ static void sg_complete (struct urb *urb, struct pt_regs *regs) | |||
265 | continue; | 265 | continue; |
266 | if (found) { | 266 | if (found) { |
267 | status = usb_unlink_urb (io->urbs [i]); | 267 | status = usb_unlink_urb (io->urbs [i]); |
268 | if (status != -EINPROGRESS && status != -EBUSY) | 268 | if (status != -EINPROGRESS |
269 | && status != -ENODEV | ||
270 | && status != -EBUSY) | ||
269 | dev_err (&io->dev->dev, | 271 | dev_err (&io->dev->dev, |
270 | "%s, unlink --> %d\n", | 272 | "%s, unlink --> %d\n", |
271 | __FUNCTION__, status); | 273 | __FUNCTION__, status); |