tty : serial: jsm: Fixed file by adding spacing
authorClement Smith <rclemsmith@gmail.com>
Wed, 2 Dec 2020 06:09:16 +0000 (11:39 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 4 Dec 2020 15:51:50 +0000 (16:51 +0100)
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>
drivers/tty/serial/jsm/jsm_tty.c

index 689774c..512b771 100644 (file)
@@ -607,7 +607,7 @@ void jsm_input(struct jsm_channel *ch)
                                 * Give the Linux ld the flags in the
                                 * 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);
                                else if (*(ch->ch_equeue +tail +i) & UART_LSR_PE)
                                        tty_insert_flip_char(port, *(ch->ch_rqueue +tail +i), TTY_PARITY);