diff options
author | Jiri Slaby <jslaby@suse.cz> | 2013-03-07 07:12:30 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-03-18 19:24:29 -0400 |
commit | aa27a094e2c2e0cc59914e56113b860f524f4479 (patch) | |
tree | b3cfef8d8023741107e3d3bed934f2bd4d8bf189 /drivers/tty/n_gsm.c | |
parent | e4408ce3c23f8451eff7a2954694598fb8fce833 (diff) |
TTY: add tty_port_tty_hangup helper
It allows for cleaning up on a considerable amount of places. They did
port_get, hangup, kref_put. Now the only thing needed is to call
tty_port_tty_hangup which does exactly that. And they can also decide
whether to consider CLOCAL or completely ignore that.
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/tty/n_gsm.c')
-rw-r--r-- | drivers/tty/n_gsm.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/drivers/tty/n_gsm.c b/drivers/tty/n_gsm.c index 4a43ef5d7962..74d9a0258d7c 100644 --- a/drivers/tty/n_gsm.c +++ b/drivers/tty/n_gsm.c | |||
@@ -1418,11 +1418,7 @@ static void gsm_dlci_close(struct gsm_dlci *dlci) | |||
1418 | pr_debug("DLCI %d goes closed.\n", dlci->addr); | 1418 | pr_debug("DLCI %d goes closed.\n", dlci->addr); |
1419 | dlci->state = DLCI_CLOSED; | 1419 | dlci->state = DLCI_CLOSED; |
1420 | if (dlci->addr != 0) { | 1420 | if (dlci->addr != 0) { |
1421 | struct tty_struct *tty = tty_port_tty_get(&dlci->port); | 1421 | tty_port_tty_hangup(&dlci->port, false); |
1422 | if (tty) { | ||
1423 | tty_hangup(tty); | ||
1424 | tty_kref_put(tty); | ||
1425 | } | ||
1426 | kfifo_reset(dlci->fifo); | 1422 | kfifo_reset(dlci->fifo); |
1427 | } else | 1423 | } else |
1428 | dlci->gsm->dead = 1; | 1424 | dlci->gsm->dead = 1; |