diff options
author | Peter Hurley <peter@hurleysoftware.com> | 2014-06-16 15:17:08 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-07-11 01:07:46 +0200 |
commit | 7c6d340f4f0e889b134fd72f203519f591feef9d (patch) | |
tree | 097d12afeba6f748949074425fd9c85ea5cf8352 /drivers/tty | |
parent | char: synclink: Remove WARN_ON for bad port count (diff) | |
download | linux-7c6d340f4f0e889b134fd72f203519f591feef9d.tar.xz linux-7c6d340f4f0e889b134fd72f203519f591feef9d.zip |
tty: Call hangup method in modern style
Signed-off-by: Peter Hurley <peter@hurleysoftware.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/tty')
-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 34110719fe03..714320b5e525 100644 --- a/drivers/tty/tty_io.c +++ b/drivers/tty/tty_io.c @@ -688,7 +688,7 @@ static void __tty_hangup(struct tty_struct *tty, int exit_session) for (n = 0; n < closecount; n++) tty->ops->close(tty, cons_filp); } else if (tty->ops->hangup) - (tty->ops->hangup)(tty); + tty->ops->hangup(tty); /* * We don't want to have driver/ldisc interactions beyond * the ones we did here. The driver layer expects no |