|
@@ -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,
|
|
|
struct inode *inode, int idx)
|
|
|
{
|
|
|
- struct tty_struct *tty;
|
|
|
-
|
|
|
if (driver->ops->lookup)
|
|
|
return driver->ops->lookup(driver, inode, idx);
|
|
|
|
|
|
- tty = driver->ttys[idx];
|
|
|
- return tty;
|
|
|
+ return driver->ttys[idx];
|
|
|
}
|
|
|
|
|
|
/**
|