Commit d4834267 authored by Jiri Slaby's avatar Jiri Slaby Committed by Greg Kroah-Hartman

TTY: simplify tty_driver_lookup_tty a bit

Remove the useless local variable and return the value itself.
Signed-off-by: default avatarJiri Slaby <jslaby@suse.cz>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 2f16669d
...@@ -1230,13 +1230,10 @@ static void tty_line_name(struct tty_driver *driver, int index, char *p) ...@@ -1230,13 +1230,10 @@ static void tty_line_name(struct tty_driver *driver, int index, char *p)
static struct tty_struct *tty_driver_lookup_tty(struct tty_driver *driver, static struct tty_struct *tty_driver_lookup_tty(struct tty_driver *driver,
struct inode *inode, int idx) struct inode *inode, int idx)
{ {
struct tty_struct *tty;
if (driver->ops->lookup) if (driver->ops->lookup)
return driver->ops->lookup(driver, inode, idx); return driver->ops->lookup(driver, inode, idx);
tty = driver->ttys[idx]; return driver->ttys[idx];
return tty;
} }
/** /**
......
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