diff options
author | Johan Hovold <johan@kernel.org> | 2019-04-21 15:21:51 +0300 |
---|---|---|
committer | Johan Hovold <johan@kernel.org> | 2019-04-26 09:38:00 +0300 |
commit | fb56422cc40f452746a4a4f75261252159082123 (patch) | |
tree | 94a490e1d48134efae410b54719f830fdde398ca /drivers/usb/serial/iuu_phoenix.c | |
parent | 2e75232b1922dbc7e57d5170b9d9f44b05a84fac (diff) | |
download | linux-fb56422cc40f452746a4a4f75261252159082123.tar.xz |
USB: serial: iuu_phoenix: drop bogus initial cflag
Drop bogus TIOCM_CTS, which is not a cflag, from the initial terminal
settings.
Note that the corresponding bit is already set by CS8.
Signed-off-by: Johan Hovold <johan@kernel.org>
Diffstat (limited to 'drivers/usb/serial/iuu_phoenix.c')
-rw-r--r-- | drivers/usb/serial/iuu_phoenix.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/usb/serial/iuu_phoenix.c b/drivers/usb/serial/iuu_phoenix.c index 449e89db9cea..93763d3d5e56 100644 --- a/drivers/usb/serial/iuu_phoenix.c +++ b/drivers/usb/serial/iuu_phoenix.c @@ -943,8 +943,7 @@ static void iuu_close(struct usb_serial_port *port) static void iuu_init_termios(struct tty_struct *tty) { tty->termios = tty_std_termios; - tty->termios.c_cflag = CLOCAL | CREAD | CS8 | B9600 - | TIOCM_CTS | CSTOPB | PARENB; + tty->termios.c_cflag = CLOCAL | CREAD | CS8 | B9600 | CSTOPB | PARENB; tty->termios.c_ispeed = 9600; tty->termios.c_ospeed = 9600; tty->termios.c_lflag = 0; |