projects
/
platform
/
kernel
/
linux-amlogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2f102a5
)
mxser: convert comma to semicolon
author
Chen Ni
<nichen@iscas.ac.cn>
Tue, 3 Sep 2024 02:37:54 +0000
(10:37 +0800)
committer
Greg Kroah-Hartman
<gregkh@linuxfoundation.org>
Tue, 3 Sep 2024 08:47:47 +0000
(10:47 +0200)
Replace a comma between expression statements by a semicolon.
Signed-off-by: Chen Ni <nichen@iscas.ac.cn>
Link:
https://lore.kernel.org/r/20240903023754.493568-1-nichen@iscas.ac.cn
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/tty/mxser.c
patch
|
blob
|
history
diff --git
a/drivers/tty/mxser.c
b/drivers/tty/mxser.c
index 6cfef88a18e3b9d26fe947d588d92fe2f15e8645..4d45eca4929abdfd60e90f96160a8f8bb005d02e 100644
(file)
--- a/
drivers/tty/mxser.c
+++ b/
drivers/tty/mxser.c
@@
-983,7
+983,7
@@
static int mxser_get_serial_info(struct tty_struct *tty,
ss->baud_base = MXSER_BAUD_BASE;
ss->close_delay = close_delay;
ss->closing_wait = closing_wait;
- ss->custom_divisor = MXSER_CUSTOM_DIVISOR
,
+ ss->custom_divisor = MXSER_CUSTOM_DIVISOR
;
mutex_unlock(&port->mutex);
return 0;
}