aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonas Danielsson <jonas@orbital-systems.com>2018-01-29 12:39:15 +0100
committerBen Hutchings <ben@decadent.org.uk>2018-06-16 22:22:29 +0100
commit6debc92e4c7c84c6380bb063265aed271eb1fd7e (patch)
tree6c728732c2e1f4a40495964ac9cbccca54838619
parent159e2516a5eda02907fd6ea407986f68fa3e7b73 (diff)
downloadlinux-6debc92e4c7c84c6380bb063265aed271eb1fd7e.tar.gz
tty/serial: atmel: add new version check for usart
commit fd63a8903a2c40425a9811c3371dd4d0f42c0ad3 upstream. On our at91sam9260 based board the usart0 and usart1 ports report their versions (ATMEL_US_VERSION) as 0x10302. This version is not included in the current checks in the driver. Signed-off-by: Jonas Danielsson <jonas@orbital-systems.com> Acked-by: Richard Genoud <richard.genoud@gmail.com> Acked-by: Nicolas Ferre <nicolas.ferre@microchip.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
-rw-r--r--drivers/tty/serial/atmel_serial.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/tty/serial/atmel_serial.c b/drivers/tty/serial/atmel_serial.c
index 56a3cc42a4b0ad..bc1c68c926bd36 100644
--- a/drivers/tty/serial/atmel_serial.c
+++ b/drivers/tty/serial/atmel_serial.c
@@ -1644,6 +1644,7 @@ static void atmel_get_ip_name(struct uart_port *port)
switch (version) {
case 0x302:
case 0x10213:
+ case 0x10302:
dev_dbg(port->dev, "This version is usart\n");
atmel_port->is_usart = true;
break;