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/prodrive/p3mx/serial.c | 32 -------------------------------- 1 file changed, 32 deletions(-) (limited to 'board/prodrive/p3mx') diff --git a/board/prodrive/p3mx/serial.c b/board/prodrive/p3mx/serial.c index d3591b4667..2f4d294b9d 100644 --- a/board/prodrive/p3mx/serial.c +++ b/board/prodrive/p3mx/serial.c @@ -83,7 +83,6 @@ static void p3mx_serial_puts(const char *s) } } -#ifdef CONFIG_SERIAL_MULTI static struct serial_device p3mx_serial_drv = { .name = "p3mx_serial", .start = p3mx_serial_init, @@ -104,37 +103,6 @@ __weak struct serial_device *default_serial_console(void) { return &p3mx_serial_drv; } -#else -int serial_init(void) -{ - return p3mx_serial_init(); -} - -void serial_setbrg(void) -{ - p3mx_serial_setbrg(); -} - -void serial_putc(const char c) -{ - p3mx_serial_putc(c); -} - -void serial_puts(const char *s) -{ - p3mx_serial_puts(s); -} - -int serial_getc(void) -{ - return p3mx_serial_getc(); -} - -int serial_tstc(void) -{ - return p3mx_serial_tstc(); -} -#endif #if defined(CONFIG_CMD_KGDB) void kgdb_serial_init (void) -- cgit v1.2.1