[PATCH 30/58] tty/serial: Don't check port->sysrq

From: Dmitry Safonov
Date: Thu Dec 12 2019 - 19:08:49 EST


uart_handle_sysrq_char() already handles it.

Signed-off-by: Dmitry Safonov <dima@xxxxxxxxxx>
---
drivers/tty/serial/pch_uart.c | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/drivers/tty/serial/pch_uart.c b/drivers/tty/serial/pch_uart.c
index c625bf7b8a92..0a96217dba67 100644
--- a/drivers/tty/serial/pch_uart.c
+++ b/drivers/tty/serial/pch_uart.c
@@ -584,10 +584,8 @@ static int pch_uart_hal_read(struct eg20t_port *priv, unsigned char *buf,
if (uart_handle_break(port))
continue;
}
- if (port->sysrq) {
- if (uart_handle_sysrq_char(port, rbr))
- continue;
- }
+ if (uart_handle_sysrq_char(port, rbr))
+ continue;

buf[i++] = rbr;
}
--
2.24.0