projects
/
platform
/
kernel
/
linux-rpi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0b60525
)
tty : serial: jsm: Fixed file by adding spacing
author
Clement Smith
<rclemsmith@gmail.com>
Wed, 2 Dec 2020 06:09:16 +0000
(11:39 +0530)
committer
Greg 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
patch
|
blob
|
history
diff --git
a/drivers/tty/serial/jsm/jsm_tty.c
b/drivers/tty/serial/jsm/jsm_tty.c
index
689774c
..
512b771
100644
(file)
--- a/
drivers/tty/serial/jsm/jsm_tty.c
+++ b/
drivers/tty/serial/jsm/jsm_tty.c
@@
-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);