提交 ddea392e 编写于 作者: K Kiran Padwal 提交者: Greg Kroah-Hartman

tty: serial: msm: remove braces {} in msm_serial.c

fixed below checkpatch.pl warning:

WARNING: braces {} are not necessary for any arm of this statement
Signed-off-by: NKiran Padwal <kiran.padwal@smartplayin.com>
Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
上级 28e3fb6c
......@@ -190,11 +190,10 @@ static void handle_rx(struct uart_port *port)
/* Mask conditions we're ignorning. */
sr &= port->read_status_mask;
if (sr & UART_SR_RX_BREAK) {
if (sr & UART_SR_RX_BREAK)
flag = TTY_BREAK;
} else if (sr & UART_SR_PAR_FRAME_ERR) {
else if (sr & UART_SR_PAR_FRAME_ERR)
flag = TTY_FRAME;
}
if (!uart_handle_sysrq_char(port, c))
tty_insert_flip_char(tport, c, flag);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册