USB: serial: io_ti: fix div-by-zero in set_termios
commit 6aeb75e6adfaed16e58780309613a578fe1ee90b upstream.
Fix a division-by-zero in set_termios when debugging is enabled and a
high-enough speed has been requested so that the divisor value becomes
zero.
Instead of just fixing the offending debug statement, cap the baud rate
at the base as a zero divisor value also appears to crash the firmware.
Fixes: 1da177e4c3
("Linux-2.6.12-rc2")
Reviewed-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Johan Hovold <johan@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
4be0ae3d31
commit
1e6e9c4c36
1 changed files with 4 additions and 1 deletions
|
@ -2349,8 +2349,11 @@ static void change_port_settings(struct tty_struct *tty,
|
|||
if (!baud) {
|
||||
/* pick a default, any default... */
|
||||
baud = 9600;
|
||||
} else
|
||||
} else {
|
||||
/* Avoid a zero divisor. */
|
||||
baud = min(baud, 461550);
|
||||
tty_encode_baud_rate(tty, baud, baud);
|
||||
}
|
||||
|
||||
edge_port->baud_rate = baud;
|
||||
config->wBaudRate = (__u16)((461550L + baud/2) / baud);
|
||||
|
|
Loading…
Add table
Reference in a new issue