diff options
Diffstat (limited to 'board')
| -rw-r--r-- | board/Marvell/common/serial.c | 9 | ||||
| -rw-r--r-- | board/cogent/serial.c | 8 | ||||
| -rw-r--r-- | board/esd/cpci750/serial.c | 10 | ||||
| -rw-r--r-- | board/evb64260/serial.c | 9 | ||||
| -rw-r--r-- | board/pcippc2/fpga_serial.c | 7 | ||||
| -rw-r--r-- | board/pcippc2/fpga_serial.h | 1 | ||||
| -rw-r--r-- | board/pcippc2/pcippc2.c | 3 | ||||
| -rw-r--r-- | board/prodrive/p3mx/serial.c | 10 | 
8 files changed, 7 insertions, 50 deletions
| diff --git a/board/Marvell/common/serial.c b/board/Marvell/common/serial.c index 1327c62a7..4a780c374 100644 --- a/board/Marvell/common/serial.c +++ b/board/Marvell/common/serial.c @@ -139,20 +139,13 @@ static void marvell_serial_setbrg(void)  #endif /* CONFIG_MPSC */ -static void marvell_serial_puts(const char *s) -{ -	while (*s) { -		serial_putc (*s++); -	} -} -  static struct serial_device marvell_serial_drv = {  	.name	= "marvell_serial",  	.start	= marvell_serial_init,  	.stop	= NULL,  	.setbrg	= marvell_serial_setbrg,  	.putc	= marvell_serial_putc, -	.puts	= marvell_serial_puts, +	.puts	= default_serial_puts,  	.getc	= marvell_serial_getc,  	.tstc	= marvell_serial_tstc,  }; diff --git a/board/cogent/serial.c b/board/cogent/serial.c index cd4a976f8..20631d162 100644 --- a/board/cogent/serial.c +++ b/board/cogent/serial.c @@ -68,12 +68,6 @@ static void cogent_serial_putc(const char c)  	cma_mb_reg_write (&mbsp->ser_thr, c);  } -static void cogent_serial_puts(const char *s) -{ -	while (*s != '\0') -		serial_putc (*s++); -} -  static int cogent_serial_getc(void)  {  	cma_mb_serial *mbsp = (cma_mb_serial *) CMA_MB_SERIAL_BASE; @@ -96,7 +90,7 @@ static struct serial_device cogent_serial_drv = {  	.stop	= NULL,  	.setbrg	= cogent_serial_setbrg,  	.putc	= cogent_serial_putc, -	.puts	= cogent_serial_puts, +	.puts	= default_serial_puts,  	.getc	= cogent_serial_getc,  	.tstc	= cogent_serial_tstc,  }; diff --git a/board/esd/cpci750/serial.c b/board/esd/cpci750/serial.c index 25f8950e9..160e0e0ae 100644 --- a/board/esd/cpci750/serial.c +++ b/board/esd/cpci750/serial.c @@ -75,21 +75,13 @@ static void cpci750_serial_setbrg(void)  	galbrg_set_baudrate (CONFIG_MPSC_PORT, gd->baudrate);  } - -static void cpci750_serial_puts(const char *s) -{ -	while (*s) { -		serial_putc (*s++); -	} -} -  static struct serial_device cpci750_serial_drv = {  	.name	= "cpci750_serial",  	.start	= cpci750_serial_init,  	.stop	= NULL,  	.setbrg	= cpci750_serial_setbrg,  	.putc	= cpci750_serial_putc, -	.puts	= cpci750_serial_puts, +	.puts	= default_serial_puts,  	.getc	= cpci750_serial_getc,  	.tstc	= cpci750_serial_tstc,  }; diff --git a/board/evb64260/serial.c b/board/evb64260/serial.c index 9fd429864..b9ca1d760 100644 --- a/board/evb64260/serial.c +++ b/board/evb64260/serial.c @@ -139,20 +139,13 @@ static void evb64260_serial_setbrg(void)  #endif /* CONFIG_MPSC */ -static void evb64260_serial_puts(const char *s) -{ -	while (*s) { -		serial_putc (*s++); -	} -} -  static struct serial_device evb64260_serial_drv = {  	.name	= "evb64260_serial",  	.start	= evb64260_serial_init,  	.stop	= NULL,  	.setbrg	= evb64260_serial_setbrg,  	.putc	= evb64260_serial_putc, -	.puts	= evb64260_serial_puts, +	.puts	= default_serial_puts,  	.getc	= evb64260_serial_getc,  	.tstc	= evb64260_serial_tstc,  }; diff --git a/board/pcippc2/fpga_serial.c b/board/pcippc2/fpga_serial.c index 5f89d9b12..de61ca0e5 100644 --- a/board/pcippc2/fpga_serial.c +++ b/board/pcippc2/fpga_serial.c @@ -73,13 +73,6 @@ void fpga_serial_putc (char c)  	}  } -void fpga_serial_puts (const char *s) -{ -	while (*s) { -		fpga_serial_print (*s++); -	} -} -  int fpga_serial_getc (void)  {  	while ((in8 (UART (LSR)) & 0x01) == 0); diff --git a/board/pcippc2/fpga_serial.h b/board/pcippc2/fpga_serial.h index 52750143c..106fbf7a5 100644 --- a/board/pcippc2/fpga_serial.h +++ b/board/pcippc2/fpga_serial.h @@ -26,7 +26,6 @@  extern void	fpga_serial_init	(int);  extern void	fpga_serial_putc	(char); -extern void	fpga_serial_puts	(const char *);  extern int	fpga_serial_getc	(void);  extern int	fpga_serial_tstc	(void);  extern void	fpga_serial_setbrg	(void); diff --git a/board/pcippc2/pcippc2.c b/board/pcippc2/pcippc2.c index 4a91458e8..5e6fc58cf 100644 --- a/board/pcippc2/pcippc2.c +++ b/board/pcippc2/pcippc2.c @@ -29,6 +29,7 @@  #include <watchdog.h>  #include <pci.h>  #include <netdev.h> +#include <serial.h>  #include "hardware.h"  #include "pcippc2.h" @@ -129,7 +130,7 @@ int misc_init_r (void)  	fpga_serial_init (sconsole_get_baudrate ());  	sconsole_putc   = fpga_serial_putc; -	sconsole_puts   = fpga_serial_puts; +	sconsole_puts   = default_serial_puts;  	sconsole_getc   = fpga_serial_getc;  	sconsole_tstc   = fpga_serial_tstc;  	sconsole_setbrg = fpga_serial_setbrg; diff --git a/board/prodrive/p3mx/serial.c b/board/prodrive/p3mx/serial.c index 2f4d294b9..3536933c0 100644 --- a/board/prodrive/p3mx/serial.c +++ b/board/prodrive/p3mx/serial.c @@ -75,21 +75,13 @@ static void p3mx_serial_setbrg(void)  	galbrg_set_baudrate (CONFIG_MPSC_PORT, gd->baudrate);  } - -static void p3mx_serial_puts(const char *s) -{ -	while (*s) { -		serial_putc (*s++); -	} -} -  static struct serial_device p3mx_serial_drv = {  	.name	= "p3mx_serial",  	.start	= p3mx_serial_init,  	.stop	= NULL,  	.setbrg	= p3mx_serial_setbrg,  	.putc	= p3mx_serial_putc, -	.puts	= p3mx_serial_puts, +	.puts	= default_serial_puts,  	.getc	= p3mx_serial_getc,  	.tstc	= p3mx_serial_tstc,  }; |