tty : serial: jsm: Fixed file by adding spacing

Fixed a coding style issue

Signed-off-by: Clement Smith <rclemsmith@gmail.com>
Link: https://lore.kernel.org/r/20201202060916.34130-1-rclemsmith@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Clement Smith 2020-12-02 11:39:16 +05:30 коммит произвёл Greg Kroah-Hartman
Родитель 0b60525b4e
Коммит 7af77ba424
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -607,7 +607,7 @@ void jsm_input(struct jsm_channel *ch)
* Give the Linux ld the flags in the * Give the Linux ld the flags in the
* format it likes. * format it likes.
*/ */
if (*(ch->ch_equeue +tail +i) & UART_LSR_BI) if (*(ch->ch_equeue + tail + i) & UART_LSR_BI)
tty_insert_flip_char(port, *(ch->ch_rqueue +tail +i), TTY_BREAK); tty_insert_flip_char(port, *(ch->ch_rqueue +tail +i), TTY_BREAK);
else if (*(ch->ch_equeue +tail +i) & UART_LSR_PE) else if (*(ch->ch_equeue +tail +i) & UART_LSR_PE)
tty_insert_flip_char(port, *(ch->ch_rqueue +tail +i), TTY_PARITY); tty_insert_flip_char(port, *(ch->ch_rqueue +tail +i), TTY_PARITY);