From a3827250606895ec2dd4b8d867342b7cabf3692f Mon Sep 17 00:00:00 2001 From: Marek Vasut Date: Fri, 14 Sep 2012 23:44:09 +0200 Subject: 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 Cc: Marek Vasut Cc: Anatolij Gustschin Cc: Stefan Roese Signed-off-by: Tom Rini --- board/cogent/serial.c | 32 -------------------------------- 1 file changed, 32 deletions(-) (limited to 'board/cogent') diff --git a/board/cogent/serial.c b/board/cogent/serial.c index 18a9dbf35c..cd4a976f89 100644 --- a/board/cogent/serial.c +++ b/board/cogent/serial.c @@ -90,7 +90,6 @@ static int cogent_serial_tstc(void) return ((cma_mb_reg_read (&mbsp->ser_lsr) & LSR_DR) != 0); } -#ifdef CONFIG_SERIAL_MULTI static struct serial_device cogent_serial_drv = { .name = "cogent_serial", .start = cogent_serial_init, @@ -111,37 +110,6 @@ __weak struct serial_device *default_serial_console(void) { return &cogent_serial_drv; } -#else -int serial_init(void) -{ - return cogent_serial_init(); -} - -void serial_setbrg(void) -{ - cogent_serial_setbrg(); -} - -void serial_putc(const char c) -{ - cogent_serial_putc(c); -} - -void serial_puts(const char *s) -{ - cogent_serial_puts(s); -} - -int serial_getc(void) -{ - return cogent_serial_getc(); -} - -int serial_tstc(void) -{ - return cogent_serial_tstc(); -} -#endif #endif /* CONS_NONE */ #if defined(CONFIG_CMD_KGDB) && \ -- cgit v1.2.1