]> Git Repo - linux.git/commitdiff
tty : serial: jsm: Fixed file by adding spacing
authorClement Smith <[email protected]>
Wed, 2 Dec 2020 06:09:16 +0000 (11:39 +0530)
committerGreg Kroah-Hartman <[email protected]>
Fri, 4 Dec 2020 15:51:50 +0000 (16:51 +0100)
Fixed a coding style issue

Signed-off-by: Clement Smith <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Greg Kroah-Hartman <[email protected]>
drivers/tty/serial/jsm/jsm_tty.c

index 689774c073ca4d91ef18cc0246923aa8e4c88772..512b77195e9f8e3c65b03d68539760e04c781cfd 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);
This page took 0.06253 seconds and 4 git commands to generate.