Commit ed334c0e authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman

tty: 68328serial.c: move assignment out of if () block

We should not be doing assignments within an if () block
so fix up the code to not do this.

change was created using Coccinelle.

CC: Jiri Slaby <jslaby@suse.cz>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent cb4595a2
...@@ -508,7 +508,8 @@ static void change_speed(struct m68k_serial *info, struct tty_struct *tty) ...@@ -508,7 +508,8 @@ static void change_speed(struct m68k_serial *info, struct tty_struct *tty)
int i; int i;
cflag = tty->termios.c_cflag; cflag = tty->termios.c_cflag;
if (!(port = info->port)) port = info->port;
if (!port)
return; return;
ustcnt = uart->ustcnt; ustcnt = uart->ustcnt;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment