diff options
author | Jiri Slaby <jslaby@suse.cz> | 2012-01-30 15:14:30 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-02-02 18:09:47 -0500 |
commit | 81f5835eae424be646753ec5a044ed4db1fcc09a (patch) | |
tree | 18dff7d51ce74ef0ee1bd0964028bf7cbebe9aba /drivers/isdn | |
parent | 76f82a7ab3a724791d184e74529e96ad6947a98f (diff) |
TTY: use tty_standard_install
Use the helper in the rest of the tty drivers. This is a simple
replacement.
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
Acked-by: Alan Cox <alan@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/isdn')
-rw-r--r-- | drivers/isdn/capi/capi.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/drivers/isdn/capi/capi.c b/drivers/isdn/capi/capi.c index e44933d58790..94948be5d366 100644 --- a/drivers/isdn/capi/capi.c +++ b/drivers/isdn/capi/capi.c | |||
@@ -1015,14 +1015,11 @@ capinc_tty_install(struct tty_driver *driver, struct tty_struct *tty) | |||
1015 | { | 1015 | { |
1016 | int idx = tty->index; | 1016 | int idx = tty->index; |
1017 | struct capiminor *mp = capiminor_get(idx); | 1017 | struct capiminor *mp = capiminor_get(idx); |
1018 | int ret = tty_init_termios(tty); | 1018 | int ret = tty_standard_install(driver, tty); |
1019 | 1019 | ||
1020 | if (ret == 0) { | 1020 | if (ret == 0) |
1021 | tty_driver_kref_get(driver); | ||
1022 | tty->count++; | ||
1023 | tty->driver_data = mp; | 1021 | tty->driver_data = mp; |
1024 | driver->ttys[idx] = tty; | 1022 | else |
1025 | } else | ||
1026 | capiminor_put(mp); | 1023 | capiminor_put(mp); |
1027 | return ret; | 1024 | return ret; |
1028 | } | 1025 | } |