diff options
author | Marek Vasut <marex@denx.de> | 2012-09-14 23:44:09 +0200 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2012-10-15 11:53:58 -0700 |
commit | a3827250606895ec2dd4b8d867342b7cabf3692f (patch) | |
tree | 6b12200d510d6f07ce49ef3e90642b09142e60f4 /board/pcippc2 | |
parent | bffe31c144909722eb8b5878992fdf402cd42f9d (diff) | |
download | u-boot-imx-a3827250606895ec2dd4b8d867342b7cabf3692f.zip u-boot-imx-a3827250606895ec2dd4b8d867342b7cabf3692f.tar.gz u-boot-imx-a3827250606895ec2dd4b8d867342b7cabf3692f.tar.bz2 |
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/pcippc2')
-rw-r--r-- | board/pcippc2/sconsole.c | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/board/pcippc2/sconsole.c b/board/pcippc2/sconsole.c index 0a31963..aa3c908 100644 --- a/board/pcippc2/sconsole.c +++ b/board/pcippc2/sconsole.c @@ -115,7 +115,6 @@ static void sconsole_serial_setbrg(void) } } -#ifdef CONFIG_SERIAL_MULTI static struct serial_device sconsole_serial_drv = { .name = "sconsole_serial", .start = sconsole_serial_init, @@ -136,37 +135,7 @@ __weak struct serial_device *default_serial_console(void) { return &sconsole_serial_drv; } -#else -int serial_init(void) -{ - return sconsole_serial_init(); -} - -void serial_setbrg(void) -{ - sconsole_serial_setbrg(); -} - -void serial_putc(const char c) -{ - sconsole_serial_putc(c); -} -void serial_puts(const char *s) -{ - sconsole_serial_puts(s); -} - -int serial_getc(void) -{ - return sconsole_serial_getc(); -} - -int serial_tstc(void) -{ - return sconsole_serial_tstc(); -} -#endif int sconsole_get_baudrate (void) { sconsole_buffer_t *sb = SCONSOLE_BUFFER; |