diff options
Diffstat (limited to 'arch/mips/cpu/mips32/incaip/asc_serial.c')
-rw-r--r-- | arch/mips/cpu/mips32/incaip/asc_serial.c | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/arch/mips/cpu/mips32/incaip/asc_serial.c b/arch/mips/cpu/mips32/incaip/asc_serial.c index b5f32e2820..08949f4fb0 100644 --- a/arch/mips/cpu/mips32/incaip/asc_serial.c +++ b/arch/mips/cpu/mips32/incaip/asc_serial.c @@ -286,7 +286,6 @@ static int asc_serial_tstc(void) return res; } -#ifdef CONFIG_SERIAL_MULTI static struct serial_device asc_serial_drv = { .name = "asc_serial", .start = asc_serial_init, @@ -307,34 +306,3 @@ __weak struct serial_device *default_serial_console(void) { return &asc_serial_drv; } -#else -int serial_init(void) -{ - return asc_serial_init(); -} - -void serial_setbrg(void) -{ - asc_serial_setbrg(); -} - -void serial_putc(const char c) -{ - asc_serial_putc(c); -} - -void serial_puts(const char *s) -{ - asc_serial_puts(s); -} - -int serial_getc(void) -{ - return asc_serial_getc(); -} - -int serial_tstc(void) -{ - return asc_serial_tstc(); -} -#endif |