[SERIAL] Fix AMBA PL011 sysrq character handling
We only want the received character without the status bits for sysrq handling. Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
This commit is contained in:
parent
04333393b9
commit
a710ce0858
1 changed files with 1 additions and 1 deletions
|
@ -160,7 +160,7 @@ pl011_rx_chars(struct uart_amba_port *uap)
|
||||||
flag = TTY_FRAME;
|
flag = TTY_FRAME;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (uart_handle_sysrq_char(&uap->port, ch, regs))
|
if (uart_handle_sysrq_char(&uap->port, ch & 255, regs))
|
||||||
goto ignore_char;
|
goto ignore_char;
|
||||||
|
|
||||||
uart_insert_char(&uap->port, ch, UART011_DR_OE, ch, flag);
|
uart_insert_char(&uap->port, ch, UART011_DR_OE, ch, flag);
|
||||||
|
|
Loading…
Reference in a new issue