Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 188749
b: refs/heads/master
c: 0ae1474
h: refs/heads/master
i:
  188747: 320fa94
v: v3
  • Loading branch information
Johan Hovold authored and Greg Kroah-Hartman committed Mar 19, 2010
1 parent a31fce5 commit b2a43d4
Show file tree
Hide file tree
Showing 2 changed files with 4 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: 7152b592593b9d48b33f8997b1dfd6df9143f7ec
refs/heads/master: 0ae1474367a15e1b65a9deed3a73a14475a419fc
4 changes: 3 additions & 1 deletion trunk/drivers/usb/serial/generic.c
Original file line number Diff line number Diff line change
Expand Up @@ -415,11 +415,13 @@ void usb_serial_generic_resubmit_read_urb(struct usb_serial_port *port,
((serial->type->read_bulk_callback) ?
serial->type->read_bulk_callback :
usb_serial_generic_read_bulk_callback), port);

result = usb_submit_urb(urb, mem_flags);
if (result)
if (result && result != -EPERM) {
dev_err(&port->dev,
"%s - failed resubmitting read urb, error %d\n",
__func__, result);
}
}
EXPORT_SYMBOL_GPL(usb_serial_generic_resubmit_read_urb);

Expand Down

0 comments on commit b2a43d4

Please sign in to comment.