Skip to content

Commit

Permalink
USB: ftdi_sio: remove pointless syslog spew
Browse files Browse the repository at this point in the history
Remove some pointless messages from the FTDI serial driver;
I found these filling up syslog on one system.  Also remove
a pointless "break" after a "return" in the same area.

Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
David Brownell authored and Greg Kroah-Hartman committed Mar 24, 2009
1 parent 6f8aa65 commit 5d1ca6c
Showing 1 changed file with 2 additions and 9 deletions.
11 changes: 2 additions & 9 deletions drivers/usb/serial/ftdi_sio.c
Original file line number Diff line number Diff line change
Expand Up @@ -2292,11 +2292,8 @@ static int ftdi_tiocmget(struct tty_struct *tty, struct file *file)
FTDI_SIO_GET_MODEM_STATUS_REQUEST_TYPE,
0, 0,
buf, 1, WDR_TIMEOUT);
if (ret < 0) {
dbg("%s Could not get modem status of device - err: %d", __func__,
ret);
if (ret < 0)
return ret;
}
break;
case FT8U232AM:
case FT232BM:
Expand All @@ -2311,15 +2308,11 @@ static int ftdi_tiocmget(struct tty_struct *tty, struct file *file)
FTDI_SIO_GET_MODEM_STATUS_REQUEST_TYPE,
0, priv->interface,
buf, 2, WDR_TIMEOUT);
if (ret < 0) {
dbg("%s Could not get modem status of device - err: %d", __func__,
ret);
if (ret < 0)
return ret;
}
break;
default:
return -EFAULT;
break;
}

return (buf[0] & FTDI_SIO_DSR_MASK ? TIOCM_DSR : 0) |
Expand Down

0 comments on commit 5d1ca6c

Please sign in to comment.