diff options
| author | Wolfgang Denk <wd@pollux.denx.de> | 2006-07-19 13:50:38 +0200 | 
|---|---|---|
| committer | Wolfgang Denk <wd@pollux.denx.de> | 2006-07-19 13:50:38 +0200 | 
| commit | b87dfd2854809ddcf4be54d772752e7ed137386f (patch) | |
| tree | d10a0446c375a2961223f12f553a51422bff553a /cpu/ppc4xx/serial.c | |
| parent | f3e06df7e89a1b6ff6701d523b4beea6e3fa5159 (diff) | |
| download | olio-uboot-2014.01-b87dfd2854809ddcf4be54d772752e7ed137386f.tar.xz olio-uboot-2014.01-b87dfd2854809ddcf4be54d772752e7ed137386f.zip | |
Add support for TB5200 board
The TB5200 ("Tinybox") is a small baseboard for the TQM5200 module
integrated in a little aluminium case.
Patch by Martin Krause, 8 Jun 2006
Some code cleanup
Diffstat (limited to 'cpu/ppc4xx/serial.c')
| -rw-r--r-- | cpu/ppc4xx/serial.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/cpu/ppc4xx/serial.c b/cpu/ppc4xx/serial.c index 3749811dc..463151960 100644 --- a/cpu/ppc4xx/serial.c +++ b/cpu/ppc4xx/serial.c @@ -635,7 +635,7 @@ void serial_setbrg (void)  	tmp = gd->baudrate * udiv * 16;  	bdiv = (clk + tmp / 2) / tmp; -#endif /* !defined(CFG_EXT_SERIAL_CLOCK) && (...) */  +#endif /* !defined(CFG_EXT_SERIAL_CLOCK) && (...) */  #if defined(CONFIG_SERIAL_MULTI)  	out8 (dev_base + UART_LCR, 0x80);	/* set DLAB bit */ |