Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Clement Smith and committed by
Greg Kroah-Hartman
7af77ba4 0b60525b

+1 -1
+1 -1
drivers/tty/serial/jsm/jsm_tty.c
··· 607 607 * Give the Linux ld the flags in the 608 608 * format it likes. 609 609 */ 610 - if (*(ch->ch_equeue +tail +i) & UART_LSR_BI) 610 + if (*(ch->ch_equeue + tail + i) & UART_LSR_BI) 611 611 tty_insert_flip_char(port, *(ch->ch_rqueue +tail +i), TTY_BREAK); 612 612 else if (*(ch->ch_equeue +tail +i) & UART_LSR_PE) 613 613 tty_insert_flip_char(port, *(ch->ch_rqueue +tail +i), TTY_PARITY);