summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorMarek Vasut <marex@denx.de>2012-09-13 10:25:07 (GMT)
committerTom Rini <trini@ti.com>2012-10-15 18:53:52 (GMT)
commitaf7be3b6a986c48673ef5bf903146efd3205814b (patch)
tree08954114e8ef7417bd79811b6a31f371b053ea3b /common
parentfcc2074d5799255e6a56a2adc48fcc03f0889e00 (diff)
downloadu-boot-fsl-qoriq-af7be3b6a986c48673ef5bf903146efd3205814b.tar.xz
serial: sparc: Implement CONFIG_SERIAL_MULTI into leon2 serial driver
Implement support for CONFIG_SERIAL_MULTI into leon2 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 leon2 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 07573d1..34a6530 100644
--- a/common/serial.c
+++ b/common/serial.c
@@ -59,6 +59,7 @@ serial_initfunc(mpc8260_scc_serial_initialize);
serial_initfunc(mpc8260_smc_serial_initialize);
serial_initfunc(mpc85xx_serial_initialize);
serial_initfunc(iop480_serial_initialize);
+serial_initfunc(leon2_serial_initialize);
void serial_register(struct serial_device *dev)
{
@@ -96,6 +97,7 @@ void serial_initialize(void)
mpc8260_smc_serial_initialize();
mpc85xx_serial_initialize();
iop480_serial_initialize();
+ leon2_serial_initialize();
serial_assign(default_serial_console()->name);
}