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

tty: hvc_console.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>
CC: Tomoki Sekiyama <tomoki.sekiyama@hds.com>
CC: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 9ff46047
...@@ -319,7 +319,8 @@ static int hvc_install(struct tty_driver *driver, struct tty_struct *tty) ...@@ -319,7 +319,8 @@ static int hvc_install(struct tty_driver *driver, struct tty_struct *tty)
int rc; int rc;
/* Auto increments kref reference if found. */ /* Auto increments kref reference if found. */
if (!(hp = hvc_get_by_index(tty->index))) hp = hvc_get_by_index(tty->index);
if (!hp)
return -ENODEV; return -ENODEV;
tty->driver_data = hp; tty->driver_data = hp;
......
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