aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/tty/serial/8250/8250.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/tty/serial/8250/8250.c b/drivers/tty/serial/8250/8250.c
index 3624df674a31..39d970719f7d 100644
--- a/drivers/tty/serial/8250/8250.c
+++ b/drivers/tty/serial/8250/8250.c
@@ -911,9 +911,9 @@ static void autoconfig_16550a(struct uart_8250_port *up)
911 * found at offset 0x09. Instead check the Deice ID (DVID) 911 * found at offset 0x09. Instead check the Deice ID (DVID)
912 * register for a 2, 4 or 8 port UART. 912 * register for a 2, 4 or 8 port UART.
913 */ 913 */
914 status1 = serial_in(up, UART_EXAR_DVID); 914 if (up->port.flags & UPF_EXAR_EFR) {
915 if (status1 == 0x82 || status1 == 0x84 || status1 == 0x88) { 915 status1 = serial_in(up, UART_EXAR_DVID);
916 if (up->port.flags & UPF_EXAR_EFR) { 916 if (status1 == 0x82 || status1 == 0x84 || status1 == 0x88) {
917 DEBUG_AUTOCONF("Exar XR17V35x "); 917 DEBUG_AUTOCONF("Exar XR17V35x ");
918 up->port.type = PORT_XR17V35X; 918 up->port.type = PORT_XR17V35X;
919 up->capabilities |= UART_CAP_AFE | UART_CAP_EFR | 919 up->capabilities |= UART_CAP_AFE | UART_CAP_EFR |