diff options
author | Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> | 2008-04-28 05:14:08 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-04-28 11:58:30 -0400 |
commit | baac58955d6933571f29126a1a95299b421faef7 (patch) | |
tree | 4642e9326cc8a6254ec7bc190cf9696ceee8c2dd /drivers/serial/vr41xx_siu.c | |
parent | eb424fd21c0931e998156225f2a0910167c3e16c (diff) |
serial: add vr41xx_siu_early_setup() for serial console
Add vr41xx_siu_early_setup() for serial console.
Signed-off-by: Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp>
Cc: Ralf Baechle <ralf@linux-mips.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/serial/vr41xx_siu.c')
-rw-r--r-- | drivers/serial/vr41xx_siu.c | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/drivers/serial/vr41xx_siu.c b/drivers/serial/vr41xx_siu.c index 98ab649c1ff9..bb6ce6bba32f 100644 --- a/drivers/serial/vr41xx_siu.c +++ b/drivers/serial/vr41xx_siu.c | |||
@@ -1,7 +1,7 @@ | |||
1 | /* | 1 | /* |
2 | * Driver for NEC VR4100 series Serial Interface Unit. | 2 | * Driver for NEC VR4100 series Serial Interface Unit. |
3 | * | 3 | * |
4 | * Copyright (C) 2004-2007 Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> | 4 | * Copyright (C) 2004-2008 Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> |
5 | * | 5 | * |
6 | * Based on drivers/serial/8250.c, by Russell King. | 6 | * Based on drivers/serial/8250.c, by Russell King. |
7 | * | 7 | * |
@@ -840,6 +840,19 @@ static int __devinit siu_console_init(void) | |||
840 | 840 | ||
841 | console_initcall(siu_console_init); | 841 | console_initcall(siu_console_init); |
842 | 842 | ||
843 | void __init vr41xx_siu_early_setup(struct uart_port *port) | ||
844 | { | ||
845 | if (port->type == PORT_UNKNOWN) | ||
846 | return; | ||
847 | |||
848 | siu_uart_ports[port->line].line = port->line; | ||
849 | siu_uart_ports[port->line].type = port->type; | ||
850 | siu_uart_ports[port->line].uartclk = SIU_BAUD_BASE * 16; | ||
851 | siu_uart_ports[port->line].mapbase = port->mapbase; | ||
852 | siu_uart_ports[port->line].mapbase = port->mapbase; | ||
853 | siu_uart_ports[port->line].ops = &siu_uart_ops; | ||
854 | } | ||
855 | |||
843 | #define SERIAL_VR41XX_CONSOLE &siu_console | 856 | #define SERIAL_VR41XX_CONSOLE &siu_console |
844 | #else | 857 | #else |
845 | #define SERIAL_VR41XX_CONSOLE NULL | 858 | #define SERIAL_VR41XX_CONSOLE NULL |