mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-03 01:36:52 +09:00
tty/serial: Fix XSCALE serial ports, e.g. ce4100
commit5568181f18upstream. Commit4539c24fe4"tty/serial: Add explicit PORT_TEGRA type" introduced separate flags describing the need for IER bits UUE and RTOIE. Both bits are required for the XSCALE port type. While that patch updated uart_config[] as required, the auto-probing code wasn't updated to set the RTOIE flag when an XSCALE port type was detected. This caused such ports to stop working. This patch rectifies that. Reported-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> Tested-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> Signed-off-by: Stephen Warren <swarren@nvidia.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
a6f0411fbd
commit
c4b9902f84
@@ -1107,7 +1107,7 @@ static void autoconfig_16550a(struct uart_8250_port *up)
|
||||
*/
|
||||
DEBUG_AUTOCONF("Xscale ");
|
||||
up->port.type = PORT_XSCALE;
|
||||
up->capabilities |= UART_CAP_UUE;
|
||||
up->capabilities |= UART_CAP_UUE | UART_CAP_RTOIE;
|
||||
return;
|
||||
}
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user