diff options
author | Marek Vasut | 2012-09-14 23:44:09 +0200 |
---|---|---|
committer | Tom Rini | 2012-10-15 11:53:58 -0700 |
commit | a3827250606895ec2dd4b8d867342b7cabf3692f (patch) | |
tree | 6b12200d510d6f07ce49ef3e90642b09142e60f4 /board/trizepsiv/conxs.c | |
parent | bffe31c144909722eb8b5878992fdf402cd42f9d (diff) |
serial: Remove CONFIG_SERIAL_MULTI from serial drivers
Remove the support for not-CONFIG_SERIAL_MULTI part from serial
port drivers and some board files. Since CONFIG_SERIAL_MULTI is
now enabled by default, that part is a dead code. Remove it.
Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Marek Vasut <marek.vasut@gmail.com>
Cc: Anatolij Gustschin <agust@denx.de>
Cc: Stefan Roese <sr@denx.de>
Signed-off-by: Tom Rini <trini@ti.com>
Diffstat (limited to 'board/trizepsiv/conxs.c')
-rw-r--r-- | board/trizepsiv/conxs.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/board/trizepsiv/conxs.c b/board/trizepsiv/conxs.c index 8fc3c40e6b4..871e052b04e 100644 --- a/board/trizepsiv/conxs.c +++ b/board/trizepsiv/conxs.c @@ -120,7 +120,6 @@ int board_init (void) int board_late_init(void) { -#if defined(CONFIG_SERIAL_MULTI) char *console=getenv("boot_console"); if ((console == NULL) || (strcmp(console,"serial_btuart") && @@ -131,7 +130,6 @@ int board_late_init(void) setenv("stdout",console); setenv("stdin", console); setenv("stderr",console); -#endif return 0; } |