aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorMarek Vasut <marex@denx.de>2012-09-13 12:25:48 +0200
committerTom Rini <trini@ti.com>2012-10-15 11:53:52 -0700
commit29b5ff7f8e392cafc91476342a7ee5bd683ee0ec (patch)
tree947efe223e1cd4ca6944755a755631785b49e7a4 /common
parentaf7be3b6a986c48673ef5bf903146efd3205814b (diff)
serial: sparc: Implement CONFIG_SERIAL_MULTI into leon3 serial driver
Implement support for CONFIG_SERIAL_MULTI into leon3 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 leon3 driver. Also, add a weak implementation of default_serial_console() returning this driver. Signed-off-by: Marek Vasut <marex@denx.de> Cc: Marek Vasut <marek.vasut@gmail.com> Cc: Tom Rini <trini@ti.com> Cc: Peter Tyser <ptyser@xes-inc.com>
Diffstat (limited to 'common')
-rw-r--r--common/serial.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/common/serial.c b/common/serial.c
index 34a6530d9..14a56281c 100644
--- a/common/serial.c
+++ b/common/serial.c
@@ -60,6 +60,7 @@ serial_initfunc(mpc8260_smc_serial_initialize);
serial_initfunc(mpc85xx_serial_initialize);
serial_initfunc(iop480_serial_initialize);
serial_initfunc(leon2_serial_initialize);
+serial_initfunc(leon3_serial_initialize);
void serial_register(struct serial_device *dev)
{
@@ -98,6 +99,7 @@ void serial_initialize(void)
mpc85xx_serial_initialize();
iop480_serial_initialize();
leon2_serial_initialize();
+ leon3_serial_initialize();
serial_assign(default_serial_console()->name);
}