Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 303958
b: refs/heads/master
c: 00c533f
h: refs/heads/master
v: v3
  • Loading branch information
Greg Kroah-Hartman committed May 15, 2012
1 parent 2ed9189 commit a9b57a3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 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: 9f857ae922a08a94fe41a649c2d0baa73cd74d2a
refs/heads/master: 00c533fd64a3eb7f8e266413d3e9bd070df9d5ed
11 changes: 6 additions & 5 deletions trunk/drivers/usb/serial/navman.c
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,12 @@ static void navman_read_int_callback(struct urb *urb)
case -ENOENT:
case -ESHUTDOWN:
/* this urb is terminated, clean up */
dbg("%s - urb shutting down with status: %d",
__func__, status);
dev_dbg(&port->dev, "%s - urb shutting down with status: %d\n",
__func__, status);
return;
default:
dbg("%s - nonzero urb status received: %d",
__func__, status);
dev_dbg(&port->dev, "%s - nonzero urb status received: %d\n",
__func__, status);
goto exit;
}

Expand All @@ -78,7 +78,8 @@ static int navman_open(struct tty_struct *tty, struct usb_serial_port *port)
int result = 0;

if (port->interrupt_in_urb) {
dbg("%s - adding interrupt input for treo", __func__);
dev_dbg(&port->dev, "%s - adding interrupt input for treo\n",
__func__);
result = usb_submit_urb(port->interrupt_in_urb, GFP_KERNEL);
if (result)
dev_err(&port->dev,
Expand Down

0 comments on commit a9b57a3

Please sign in to comment.