Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 303953
b: refs/heads/master
c: c89aa63
h: refs/heads/master
i:
  303951: 9380da9
v: v3
  • Loading branch information
Greg Kroah-Hartman committed May 15, 2012
1 parent f1bcd66 commit d0ba5fd
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: d2f20e12e93820b0ad891e101987e669179e0978
refs/heads/master: c89aa63898f2238cd3c6537963a82b05146b9338
11 changes: 6 additions & 5 deletions trunk/drivers/usb/serial/belkin_sa.c
Original file line number Diff line number Diff line change
Expand Up @@ -197,12 +197,12 @@ static void belkin_sa_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 Down Expand Up @@ -391,7 +391,8 @@ static void belkin_sa_set_termios(struct tty_struct *tty,
urb_value = BELKIN_SA_DATA_BITS(8);
break;
default:
dbg("CSIZE was not CS5-CS8, using default of 8");
dev_dbg(&port->dev,
"CSIZE was not CS5-CS8, using default of 8\n");
urb_value = BELKIN_SA_DATA_BITS(8);
break;
}
Expand Down

0 comments on commit d0ba5fd

Please sign in to comment.