diff options
author | Peter Hurley <peter@hurleysoftware.com> | 2014-11-05 18:12:58 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-11-06 03:42:46 +0100 |
commit | 62462aefeb5aff092fc97037d9c12a4afe95a3ff (patch) | |
tree | 23ca93e2b8758158fff67a76e5851e22032811a9 /drivers/tty/tty_io.c | |
parent | tty: Fold pty pair handling into tty_flush_works() (diff) | |
download | linux-62462aefeb5aff092fc97037d9c12a4afe95a3ff.tar.xz linux-62462aefeb5aff092fc97037d9c12a4afe95a3ff.zip |
tty: Simplify tty_ldisc_release() interface
Passing the 'other' tty to tty_ldisc_release() only makes sense
for a pty pair; make o_tty function local instead.
Reviewed-by: Alan Cox <alan@linux.intel.com>
Signed-off-by: Peter Hurley <peter@hurleysoftware.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/tty/tty_io.c')
-rw-r--r-- | drivers/tty/tty_io.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/tty/tty_io.c b/drivers/tty/tty_io.c index f5b62b99489d..cd9550820a58 100644 --- a/drivers/tty/tty_io.c +++ b/drivers/tty/tty_io.c @@ -1892,7 +1892,7 @@ int tty_release(struct inode *inode, struct file *filp) /* * Ask the line discipline code to release its structures */ - tty_ldisc_release(tty, o_tty); + tty_ldisc_release(tty); /* Wait for pending work before tty destruction commmences */ tty_flush_works(tty); |