mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 06:31:49 +00:00
[PATCH] powerpc: Loosen udbg_probe_uart_speed sanity checking
The checking of the baudrate in udbg_probe_uart_speed was too tight and would cause reporting back of the default baud rate in cases where the computed speed was valid. Signed-off-by: Kumar Gala <galak@kernel.crashing.org> Signed-off-by: Paul Mackerras <paulus@samba.org>
This commit is contained in:
parent
b226e46212
commit
d0e132b536
@ -137,7 +137,7 @@ unsigned int udbg_probe_uart_speed(void __iomem *comport, unsigned int clock)
|
||||
speed = (clock / prescaler) / (divisor * 16);
|
||||
|
||||
/* sanity check */
|
||||
if (speed < 9600 || speed > 115200)
|
||||
if (speed < 0 || speed > (clock / 16))
|
||||
speed = 9600;
|
||||
|
||||
return speed;
|
||||
|
Loading…
Reference in New Issue
Block a user