Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 185400
b: refs/heads/master
c: 49d3380
h: refs/heads/master
v: v3
  • Loading branch information
Alan Cox authored and Greg Kroah-Hartman committed Mar 2, 2010
1 parent 72c411e commit 320143e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 14 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: bd07c551aae5d2200c7b195142e5ba63f26424da
refs/heads/master: 49d3380e3f1297ff7bdc700c0a7fe6c3a036b3ab
13 changes: 0 additions & 13 deletions trunk/drivers/usb/serial/usb-serial.c
Original file line number Diff line number Diff line change
Expand Up @@ -358,10 +358,6 @@ static int serial_write(struct tty_struct *tty, const unsigned char *buf,

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

/* count is managed under the mutex lock for the tty so cannot
drop to zero until after the last close completes */
WARN_ON(!port->port.count);

/* pass on to the driver specific version of this function */
retval = port->serial->type->write(tty, port, buf, count);

Expand All @@ -373,7 +369,6 @@ static int serial_write_room(struct tty_struct *tty)
{
struct usb_serial_port *port = tty->driver_data;
dbg("%s - port %d", __func__, port->number);
WARN_ON(!port->port.count);
/* pass on to the driver specific version of this function */
return port->serial->type->write_room(tty);
}
Expand All @@ -396,7 +391,6 @@ static void serial_throttle(struct tty_struct *tty)
struct usb_serial_port *port = tty->driver_data;
dbg("%s - port %d", __func__, port->number);

WARN_ON(!port->port.count);
/* pass on to the driver specific version of this function */
if (port->serial->type->throttle)
port->serial->type->throttle(tty);
Expand All @@ -407,7 +401,6 @@ static void serial_unthrottle(struct tty_struct *tty)
struct usb_serial_port *port = tty->driver_data;
dbg("%s - port %d", __func__, port->number);

WARN_ON(!port->port.count);
/* pass on to the driver specific version of this function */
if (port->serial->type->unthrottle)
port->serial->type->unthrottle(tty);
Expand All @@ -421,8 +414,6 @@ static int serial_ioctl(struct tty_struct *tty, struct file *file,

dbg("%s - port %d, cmd 0x%.4x", __func__, port->number, cmd);

WARN_ON(!port->port.count);

/* pass on to the driver specific version of this function
if it is available */
if (port->serial->type->ioctl) {
Expand All @@ -437,7 +428,6 @@ static void serial_set_termios(struct tty_struct *tty, struct ktermios *old)
struct usb_serial_port *port = tty->driver_data;
dbg("%s - port %d", __func__, port->number);

WARN_ON(!port->port.count);
/* pass on to the driver specific version of this function
if it is available */
if (port->serial->type->set_termios)
Expand All @@ -452,7 +442,6 @@ static int serial_break(struct tty_struct *tty, int break_state)

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

WARN_ON(!port->port.count);
/* pass on to the driver specific version of this function
if it is available */
if (port->serial->type->break_ctl)
Expand Down Expand Up @@ -513,7 +502,6 @@ static int serial_tiocmget(struct tty_struct *tty, struct file *file)

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

WARN_ON(!port->port.count);
if (port->serial->type->tiocmget)
return port->serial->type->tiocmget(tty, file);
return -EINVAL;
Expand All @@ -526,7 +514,6 @@ static int serial_tiocmset(struct tty_struct *tty, struct file *file,

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

WARN_ON(!port->port.count);
if (port->serial->type->tiocmset)
return port->serial->type->tiocmset(tty, file, set, clear);
return -EINVAL;
Expand Down

0 comments on commit 320143e

Please sign in to comment.