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: Kiran Padwal <kiran.padwal@smartplayin.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Kiran Padwal 2014-08-05 13:21:59 +05:30 committed by Greg Kroah-Hartman
parent 28e3fb6c4d
commit ddea392e61
1 changed files with 2 additions and 3 deletions

View File

@ -190,11 +190,10 @@ static void handle_rx(struct uart_port *port)
/* Mask conditions we're ignorning. */ /* Mask conditions we're ignorning. */
sr &= port->read_status_mask; sr &= port->read_status_mask;
if (sr & UART_SR_RX_BREAK) { if (sr & UART_SR_RX_BREAK)
flag = TTY_BREAK; flag = TTY_BREAK;
} else if (sr & UART_SR_PAR_FRAME_ERR) { else if (sr & UART_SR_PAR_FRAME_ERR)
flag = TTY_FRAME; flag = TTY_FRAME;
}
if (!uart_handle_sysrq_char(port, c)) if (!uart_handle_sysrq_char(port, c))
tty_insert_flip_char(tport, c, flag); tty_insert_flip_char(tport, c, flag);