Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 104582
b: refs/heads/master
c: b2bdd1f
h: refs/heads/master
v: v3
  • Loading branch information
Harvey Harrison authored and Greg Kroah-Hartman committed Jul 21, 2008
1 parent 1524dcc commit 1a87608
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 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: 5a33956a300dcb48a3b125cae437ad6f5c718282
refs/heads/master: b2bdd1f5041db6f2d172417b5ceea20abc7a6eb6
13 changes: 7 additions & 6 deletions trunk/drivers/usb/serial/cp2101.c
Original file line number Diff line number Diff line change
Expand Up @@ -365,8 +365,8 @@ static void cp2101_close (struct usb_serial_port *port, struct file * filp)
static void cp2101_get_termios (struct usb_serial_port *port)
{
unsigned int cflag, modem_ctl[4];
int baud;
int bits;
unsigned int baud;
unsigned int bits;

dbg("%s - port %d", __func__, port->number);

Expand Down Expand Up @@ -498,7 +498,7 @@ static void cp2101_set_termios (struct usb_serial_port *port,
struct ktermios *old_termios)
{
unsigned int cflag, old_cflag;
int baud=0, bits;
unsigned int baud = 0, bits;
unsigned int modem_ctl[4];

dbg("%s - port %d", __func__, port->number);
Expand Down Expand Up @@ -654,7 +654,7 @@ static void cp2101_set_termios (struct usb_serial_port *port,
static int cp2101_tiocmset (struct usb_serial_port *port, struct file *file,
unsigned int set, unsigned int clear)
{
int control = 0;
unsigned int control = 0;

dbg("%s - port %d", __func__, port->number);

Expand Down Expand Up @@ -683,7 +683,8 @@ static int cp2101_tiocmset (struct usb_serial_port *port, struct file *file,

static int cp2101_tiocmget (struct usb_serial_port *port, struct file *file)
{
int control, result;
unsigned int control;
int result;

dbg("%s - port %d", __func__, port->number);

Expand All @@ -703,7 +704,7 @@ static int cp2101_tiocmget (struct usb_serial_port *port, struct file *file)

static void cp2101_break_ctl (struct usb_serial_port *port, int break_state)
{
int state;
unsigned int state;

dbg("%s - port %d", __func__, port->number);
if (break_state == 0)
Expand Down

0 comments on commit 1a87608

Please sign in to comment.