From: Chen Ni Date: Tue, 3 Sep 2024 02:37:54 +0000 (+0800) Subject: mxser: convert comma to semicolon X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=1c70238a2c0282a9bf07a87876fc447f19000a1d;p=users%2Fjedix%2Flinux-maple.git mxser: convert comma to semicolon Replace a comma between expression statements by a semicolon. Signed-off-by: Chen Ni Link: https://lore.kernel.org/r/20240903023754.493568-1-nichen@iscas.ac.cn Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/tty/mxser.c b/drivers/tty/mxser.c index 6cfef88a18e3b..4d45eca4929ab 100644 --- 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; }