On Wed, Aug 25, 2021 at 02:58:19PM +0200, Jiri Slaby wrote: > On 25. 08. 21, 9:24, Dan Carpenter wrote: > > This code works but it's cleaner to use a semi-colon to end a statement > > instead of a comma. > > > > Signed-off-by: Dan Carpenter <dan.carpenter@xxxxxxxxxx> > > Acked-by: Jiri Slaby <jirislaby@xxxxxxxxxx> > > I just wonder why: > tty: moxa: > vs > mxser: > with no "tty: " > ... Now I'm confused. There is a different mxser driver, but this is modifying moxa? I just copied from git log --oneline drivers/tty/moxa.c. regards, dan carpenter > > > --- > > drivers/tty/moxa.c | 8 ++++---- > > 1 file changed, 4 insertions(+), 4 deletions(-) > > > > diff --git a/drivers/tty/moxa.c b/drivers/tty/moxa.c > > index 776f78de0f82..bf17e90858b8 100644 > > --- a/drivers/tty/moxa.c > > +++ b/drivers/tty/moxa.c > > @@ -2034,10 +2034,10 @@ static int moxa_get_serial_info(struct tty_struct *tty, > > if (!info) > > return -ENODEV; > > mutex_lock(&info->port.mutex); > > - ss->type = info->type, > > - ss->line = info->port.tty->index, > > - ss->flags = info->port.flags, > > - ss->baud_base = 921600, > > + ss->type = info->type; > > + ss->line = info->port.tty->index; > > + ss->flags = info->port.flags; > > + ss->baud_base = 921600; > > ss->close_delay = jiffies_to_msecs(info->port.close_delay) / 10; > > mutex_unlock(&info->port.mutex); > > return 0; > > > > > -- > js > suse labs