serial: sirf: fix the amount of serial ports

SiRFprimaII has three uart ports and three USP-based ports, so there
are totally six lines instead of five.

Signed-off-by: Qipan Li <Qipan.Li@csr.com>
Signed-off-by: Barry Song <Baohua.Song@csr.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Qipan Li
2013-08-25 20:18:41 +08:00
committed by Greg Kroah-Hartman
parent 459f15c45e
commit b60dfbae41
2 changed files with 8 additions and 1 deletions

View File

@@ -96,6 +96,13 @@ static struct sirfsoc_uart_port sirfsoc_uart_ports[SIRFSOC_UART_NR] = {
.line = 4,
},
},
[5] = {
.port = {
.iotype = UPIO_MEM,
.flags = UPF_BOOT_AUTOCONF,
.line = 5,
},
},
};
static inline struct sirfsoc_uart_port *to_sirfport(struct uart_port *port)