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 --- arch/powerpc/cpu/ppc4xx/iop480_uart.c | 35 ----------------------------------- 1 file changed, 35 deletions(-) (limited to 'arch/powerpc/cpu/ppc4xx') diff --git a/arch/powerpc/cpu/ppc4xx/iop480_uart.c b/arch/powerpc/cpu/ppc4xx/iop480_uart.c index fb25e15902..9473984890 100644 --- a/arch/powerpc/cpu/ppc4xx/iop480_uart.c +++ b/arch/powerpc/cpu/ppc4xx/iop480_uart.c @@ -26,11 +26,8 @@ #include #include #include - -#ifdef CONFIG_SERIAL_MULTI #include #include -#endif DECLARE_GLOBAL_DATA_PTR; @@ -234,7 +231,6 @@ static int iop480_serial_tstc(void) return 0; } -#ifdef CONFIG_SERIAL_MULTI static struct serial_device iop480_serial_drv = { .name = "iop480_serial", .start = iop480_serial_init, @@ -255,35 +251,4 @@ __weak struct serial_device *default_serial_console(void) { return &iop480_serial_drv; } -#else -int serial_init(void) -{ - return iop480_serial_init(); -} - -void serial_setbrg(void) -{ - iop480_serial_setbrg(); -} - -void serial_putc(const char c) -{ - iop480_serial_putc(c); -} - -void serial_puts(const char *s) -{ - iop480_serial_puts(s); -} - -int serial_getc(void) -{ - return iop480_serial_getc(); -} - -int serial_tstc(void) -{ - return iop480_serial_tstc(); -} -#endif #endif /* CONFIG_IOP480 */ -- cgit v1.2.3