diff options
Diffstat (limited to 'cpu')
-rw-r--r-- | cpu/mpc5xxx/serial.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpu/mpc5xxx/serial.c b/cpu/mpc5xxx/serial.c index 1e9628c..91e1def 100644 --- a/cpu/mpc5xxx/serial.c +++ b/cpu/mpc5xxx/serial.c @@ -152,14 +152,14 @@ serial_setbrg(void) unsigned long baseclk, div; #if defined(CONFIG_MGT5100) - baseclk = CFG_MPC5XXX_CLKIN / 32; + baseclk = (CFG_MPC5XXX_CLKIN + 16) / 32; #elif defined(CONFIG_MPC5200) baseclk = (gd->ipb_clk + 16) / 32; #endif /* set up UART divisor */ div = (baseclk + (gd->baudrate/2)) / gd->baudrate; - psc->ctur = div >> 8; - psc->ctlr = div & 0xff; + psc->ctur = (div >> 8) & 0xFF; + psc->ctlr = div & 0xff; } #endif /* CONFIG_PSC_CONSOLE */ |