summaryrefslogtreecommitdiff
path: root/common/serial.c
diff options
context:
space:
mode:
authorMarek Vasut <[email protected]>2012-09-13 12:34:49 +0200
committerTom Rini <[email protected]>2012-10-15 11:53:53 -0700
commit26d8eaaa48a9fda94a1bbbf02610dcec5eb8bf9f (patch)
tree5af9ea0026921157bc6d1a2227fd9a7f1d38f088 /common/serial.c
parentd126f2850fb6dc3d828332c9fceb408128871fa3 (diff)
serial: powerpc: Implement CONFIG_SERIAL_MULTI into sconsole serial driver
Implement support for CONFIG_SERIAL_MULTI into sconsole serial driver. This driver was so far only usable directly, but this patch also adds support for the multi method. This allows using more than one serial driver alongside the sconsole driver. Also, add a weak implementation of default_serial_console() returning this driver. Signed-off-by: Marek Vasut <[email protected]> Cc: Marek Vasut <[email protected]> Cc: Tom Rini <[email protected]> Cc: Anatolij Gustschin <[email protected]> Cc: Stefan Roese <[email protected]>
Diffstat (limited to 'common/serial.c')
-rw-r--r--common/serial.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/common/serial.c b/common/serial.c
index 5673ccd2ef9..e4b566e2854 100644
--- a/common/serial.c
+++ b/common/serial.c
@@ -68,6 +68,7 @@ serial_initfunc(cogent_serial_initialize);
serial_initfunc(cpci750_serial_initialize);
serial_initfunc(evb64260_serial_initialize);
serial_initfunc(ml2_serial_initialize);
+serial_initfunc(sconsole_serial_initialize);
void serial_register(struct serial_device *dev)
{
@@ -114,6 +115,7 @@ void serial_initialize(void)
cpci750_serial_initialize();
evb64260_serial_initialize();
ml2_serial_initialize();
+ sconsole_serial_initialize();
serial_assign(default_serial_console()->name);
}