summaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorwdenk <wdenk>2003-07-16 21:53:01 +0000
committerwdenk <wdenk>2003-07-16 21:53:01 +0000
commit945af8d723a29e9b6289d84250745ed0dc16fc81 (patch)
tree6798d0b717c05b01742df0c410038c702b8a1979 /drivers
parentcb4dbb7bbc271f988e14ec353a5e86d7f10e1da0 (diff)
downloadblackbird-obmc-uboot-945af8d723a29e9b6289d84250745ed0dc16fc81.tar.gz
blackbird-obmc-uboot-945af8d723a29e9b6289d84250745ed0dc16fc81.zip
* Add support for IceCube board (with MGT5100 and MPC5200 CPUs)
* Add support for MGT5100 and MPC5200 processors
Diffstat (limited to 'drivers')
-rw-r--r--drivers/ns16550.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/ns16550.c b/drivers/ns16550.c
index 9344a0a645..b20ae4b2d5 100644
--- a/drivers/ns16550.c
+++ b/drivers/ns16550.c
@@ -17,9 +17,9 @@
void NS16550_init (NS16550_t com_port, int baud_divisor)
{
com_port->ier = 0x00;
-#ifdef CONFIG_OMAP1510
+#ifdef CONFIG_OMAP1510
com_port->mdr1 = 0x7; /* mode select reset TL16C750*/
-#endif
+#endif
com_port->lcr = LCR_BKSE | LCRVAL;
com_port->dll = baud_divisor & 0xff;
com_port->dlm = (baud_divisor >> 8) & 0xff;
OpenPOWER on IntegriCloud