summaryrefslogtreecommitdiff
path: root/drivers/usb
diff options
context:
space:
mode:
authordavid-b@pacbell.net <david-b@pacbell.net>2005-08-12 02:36:36 (GMT)
committerGreg Kroah-Hartman <gregkh@suse.de>2005-09-08 23:28:25 (GMT)
commit8f34c2883b894b9a97f07b23b5b86fd65ecd2f85 (patch)
tree2f2d396c8033c4ca1ab8aea81a0f6f2874c8b138 /drivers/usb
parentf956e7cd9ac4618b98022020e638bbdc01d9d65a (diff)
downloadlinux-fsl-qoriq-8f34c2883b894b9a97f07b23b5b86fd65ecd2f85.tar.xz
[PATCH] USB: remove annoying message
Avoid an annoying message that can appear if devices are disconnected in the middle of a USB scatterlist operation. Message noted in http://bugzilla.kernel.org/show_bug.cgi?id=4373 (but the real issue there seems to be a SCSI level hang). Signed-off-by: David Brownell <dbrownell@users.sourceforge.net> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb')
-rw-r--r--drivers/usb/core/message.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/usb/core/message.c b/drivers/usb/core/message.c
index 7419724..c47c805 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)
continue;
if (found) {
status = usb_unlink_urb (io->urbs [i]);
- if (status != -EINPROGRESS && status != -EBUSY)
+ if (status != -EINPROGRESS
+ && status != -ENODEV
+ && status != -EBUSY)
dev_err (&io->dev->dev,
"%s, unlink --> %d\n",
__FUNCTION__, status);