]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - drivers/ns16550.c
* Add support for IceCube board (with MGT5100 and MPC5200 CPUs)
[karo-tx-uboot.git] / drivers / ns16550.c
index 9344a0a645dd140d4e87566dc4f049955e39f97c..b20ae4b2d5162cd127bc1934250c491175e88e71 100644 (file)
@@ -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;