mirror of
https://github.com/Stichting-MINIX-Research-Foundation/u-boot.git
synced 2025-09-10 12:39:22 -04:00
Clip udiv to 5 bits on PPC405 (serial.c).
This commit is contained in:
parent
38daa27d21
commit
7e11d8269e
@ -451,6 +451,8 @@ int serial_init (void)
|
|||||||
#else
|
#else
|
||||||
tmp = CFG_BASE_BAUD * 16;
|
tmp = CFG_BASE_BAUD * 16;
|
||||||
udiv = (clk + tmp / 2) / tmp;
|
udiv = (clk + tmp / 2) / tmp;
|
||||||
|
if (udiv > 32) /* max. 5 bits for udiv */
|
||||||
|
udiv = 32;
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user