]> git.karo-electronics.de Git - karo-tx-uboot.git/blobdiff - cpu/i386/serial.c
Merge branch 'Makefile' of git://git.denx.de/u-boot-arm
[karo-tx-uboot.git] / cpu / i386 / serial.c
index 4933d23fd41b7fff6e6884e991f72a42e6f467f8..8b5f8fa1176097fa36e68ac9a61e873e5e543ce5 100644 (file)
@@ -413,8 +413,8 @@ void kgdb_serial_init(void)
         * Init onboard 16550 UART
         */
        outb(0x80, UART1_BASE + UART_LCR);      /* set DLAB bit */
-       outb(bdiv & 0xff), UART1_BASE + UART_DLL);      /* set divisor for 9600 baud */
-       outb(bdiv >> 8), UART1_BASE + UART_DLM);        /* set divisor for 9600 baud */
+       outb((bdiv & 0xff), UART1_BASE + UART_DLL);     /* set divisor for 9600 baud */
+       outb((bdiv >> 8  ), UART1_BASE + UART_DLM);     /* set divisor for 9600 baud */
        outb(0x03, UART1_BASE + UART_LCR);      /* line control 8 bits no parity */
        outb(0x00, UART1_BASE + UART_FCR);      /* disable FIFO */
        outb(0x00, UART1_BASE + UART_MCR);      /* no modem control DTR RTS */
@@ -500,4 +500,4 @@ void kgdb_interruptible(int yes)
        return;
 }
 #endif /* (CONFIG_KGDB_SER_INDEX & 2) */
-#endif /* CFG_CMD_KGDB */
+#endif