aboutsummaryrefslogtreecommitdiff
path: root/include/serial.h
diff options
context:
space:
mode:
authorMarek Vasut <marex@denx.de>2012-10-06 14:07:01 +0000
committerTom Rini <trini@ti.com>2012-10-17 07:55:50 -0700
commitbfb7d7a3d61ff23f9dd265a56e8b5cac5bbfd76e (patch)
treeb41b156583a878f143da54aeb52fd600337b5ad5 /include/serial.h
parentbfa5b71408da629493838668e4df0ca9d12107bb (diff)
serial: Implement default_serial_puts()
U-Boot contains a lot of duplicit implementations of serial_puts() call which just pipes single characters into the port in loop. Implement function that does this behavior into common code, so others can make easy use of it. This function is called default_serial_puts() and it's sole purpose is to call putc() in loop on the whole string passed to it. Signed-off-by: Marek Vasut <marex@denx.de> Cc: Marek Vasut <marek.vasut@gmail.com> Cc: Tom Rini <trini@ti.com>
Diffstat (limited to 'include/serial.h')
-rw-r--r--include/serial.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/serial.h b/include/serial.h
index a8d23f519..14f863ed2 100644
--- a/include/serial.h
+++ b/include/serial.h
@@ -20,6 +20,8 @@ struct serial_device {
struct serial_device *next;
};
+void default_serial_puts(const char *s);
+
extern struct serial_device serial_smc_device;
extern struct serial_device serial_scc_device;
extern struct serial_device *default_serial_console(void);