[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20240903023754.493568-1-nichen@iscas.ac.cn>
Date: Tue, 3 Sep 2024 10:37:54 +0800
From: Chen Ni <nichen@...as.ac.cn>
To: jirislaby@...nel.org,
gregkh@...uxfoundation.org,
shawnguo@...nel.org,
s.hauer@...gutronix.de,
kernel@...gutronix.de,
festevam@...il.com
Cc: linux-kernel@...r.kernel.org,
linux-serial@...r.kernel.org,
imx@...ts.linux.dev,
linux-arm-kernel@...ts.infradead.org,
Chen Ni <nichen@...as.ac.cn>
Subject: [PATCH] mxser: convert comma to semicolon
Replace a comma between expression statements by a semicolon.
Signed-off-by: Chen Ni <nichen@...as.ac.cn>
---
drivers/tty/mxser.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/tty/mxser.c b/drivers/tty/mxser.c
index 6cfef88a18e3..4d45eca4929a 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;
}
--
2.25.1
Powered by blists - more mailing lists