Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 303602
b: refs/heads/master
c: c1d830c
h: refs/heads/master
v: v3
  • Loading branch information
Johan Hovold authored and Greg Kroah-Hartman committed Apr 25, 2012
1 parent ccdc54a commit 0dba91c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 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: c5b4ee64ae4adc14ba803f5efebf212e06d022c1
refs/heads/master: c1d830c5be5207ca0a4e936f135324ed7a2eea92
6 changes: 3 additions & 3 deletions trunk/drivers/usb/serial/generic.c
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ static int usb_serial_generic_submit_read_urb(struct usb_serial_port *port,
if (!test_and_clear_bit(index, &port->read_urbs_free))
return 0;

dbg("%s - port %d, urb %d\n", __func__, port->number, index);
dbg("%s - port %d, urb %d", __func__, port->number, index);

res = usb_submit_urb(port->read_urbs[index], mem_flags);
if (res) {
Expand Down Expand Up @@ -394,10 +394,10 @@ void usb_serial_generic_read_bulk_callback(struct urb *urb)
}
set_bit(i, &port->read_urbs_free);

dbg("%s - port %d, urb %d, len %d\n", __func__, port->number, i,
dbg("%s - port %d, urb %d, len %d", __func__, port->number, i,
urb->actual_length);
if (urb->status) {
dbg("%s - non-zero urb status: %d\n", __func__, urb->status);
dbg("%s - non-zero urb status: %d", __func__, urb->status);
return;
}

Expand Down

0 comments on commit 0dba91c

Please sign in to comment.