mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-06 19:08:57 +09:00
USB: serial: xr: avoid requesting zero DTE rate
When the requested line speed is B0 (hangup) there is no need to use the current speed in the line-coding request. This specifically avoids requesting a zero DTE rate when the current speed is B0, which could potentially confuse buggy firmware. Reviewed-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Signed-off-by: Johan Hovold <johan@kernel.org>
This commit is contained in:
@@ -749,8 +749,6 @@ static void xr_cdc_set_line_coding(struct tty_struct *tty,
|
||||
|
||||
if (tty->termios.c_ospeed)
|
||||
lc->dwDTERate = cpu_to_le32(tty->termios.c_ospeed);
|
||||
else if (old_termios)
|
||||
lc->dwDTERate = cpu_to_le32(old_termios->c_ospeed);
|
||||
else
|
||||
lc->dwDTERate = cpu_to_le32(9600);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user