diff options
Diffstat (limited to 'arch/sparc/cpu/leon3/serial.c')
| -rw-r--r-- | arch/sparc/cpu/leon3/serial.c | 9 | 
1 files changed, 1 insertions, 8 deletions
| diff --git a/arch/sparc/cpu/leon3/serial.c b/arch/sparc/cpu/leon3/serial.c index c4f3ee83c..838d4514e 100644 --- a/arch/sparc/cpu/leon3/serial.c +++ b/arch/sparc/cpu/leon3/serial.c @@ -99,13 +99,6 @@ static void leon3_serial_putc(const char c)  	leon3_serial_putc_raw(c);  } -static void leon3_serial_puts(const char *s) -{ -	while (*s) { -		serial_putc(*s++); -	} -} -  static int leon3_serial_getc(void)  {  	if (!leon3_apbuart) @@ -146,7 +139,7 @@ static struct serial_device leon3_serial_drv = {  	.stop	= NULL,  	.setbrg	= leon3_serial_setbrg,  	.putc	= leon3_serial_putc, -	.puts	= leon3_serial_puts, +	.puts	= default_serial_puts,  	.getc	= leon3_serial_getc,  	.tstc	= leon3_serial_tstc,  }; |