]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - drivers/serial/mcfuart.c
Serial: ns16550: Add support for CONFIG_SYS_NS16550_IER macro
[karo-tx-uboot.git] / drivers / serial / mcfuart.c
index 0b531402e4be44790f172fb1cf15c39e610a72e1..d93b24b8970677e7331eaa4ca86c851783602003 100644 (file)
@@ -34,7 +34,7 @@
 
 DECLARE_GLOBAL_DATA_PTR;
 
-extern void uart_port_conf(void);
+extern void uart_port_conf(int port);
 
 int serial_init(void)
 {
@@ -43,7 +43,7 @@ int serial_init(void)
 
        uart = (volatile uart_t *)(CONFIG_SYS_UART_BASE);
 
-       uart_port_conf();
+       uart_port_conf(CONFIG_SYS_UART_PORT);
 
        /* write to SICR: SIM2 = uart mode,dcd does not affect rx */
        uart->ucr = UART_UCR_RESET_RX;