From cfba4573f6cc2a888ae7ceab6bba3c3dab04f3dd Mon Sep 17 00:00:00 2001 From: Marek Vasut Date: Thu, 13 Sep 2012 16:50:30 +0200 Subject: serial: arm: Implement CONFIG_SERIAL_MULTI into atmel serial driver Implement support for CONFIG_SERIAL_MULTI into atmel 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 atmel driver. Also, add a weak implementation of default_serial_console() returning this driver. Signed-off-by: Marek Vasut Cc: Marek Vasut Cc: Tom Rini Cc: Xu, Hong --- common/serial.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'common') diff --git a/common/serial.c b/common/serial.c index 71985fd00d..7b2030639f 100644 --- a/common/serial.c +++ b/common/serial.c @@ -72,6 +72,7 @@ serial_initfunc(sconsole_serial_initialize); serial_initfunc(p3mx_serial_initialize); serial_initfunc(altera_jtag_serial_initialize); serial_initfunc(altera_serial_initialize); +serial_initfunc(atmel_serial_initialize); void serial_register(struct serial_device *dev) { @@ -122,6 +123,7 @@ void serial_initialize(void) p3mx_serial_initialize(); altera_jtag_serial_initialize(); altera_serial_initialize(); + atmel_serial_initialize(); serial_assign(default_serial_console()->name); } -- cgit v1.2.3