Skip to content

Commit 1c70238

Browse files
Chen Nigregkh
authored andcommitted
mxser: convert comma to semicolon
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>
1 parent 2f102a5 commit 1c70238

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/tty/mxser.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -983,7 +983,7 @@ static int mxser_get_serial_info(struct tty_struct *tty,
983983
ss->baud_base = MXSER_BAUD_BASE;
984984
ss->close_delay = close_delay;
985985
ss->closing_wait = closing_wait;
986-
ss->custom_divisor = MXSER_CUSTOM_DIVISOR,
986+
ss->custom_divisor = MXSER_CUSTOM_DIVISOR;
987987
mutex_unlock(&port->mutex);
988988
return 0;
989989
}

0 commit comments

Comments
 (0)