diff options
author | Frederic Danis <frederic.danis@linux.intel.com> | 2015-04-10 15:13:05 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-04-28 14:26:20 +0200 |
commit | b00f5c2dc01450bed9fed1a41a637fa917e03c5c (patch) | |
tree | 6b3342aa6753534a5ff660bc5fe1861ee74284e3 /include | |
parent | b787f68c36d49bb1d9236f403813641efa74a031 (diff) | |
download | linux-b00f5c2dc01450bed9fed1a41a637fa917e03c5c.tar.gz linux-b00f5c2dc01450bed9fed1a41a637fa917e03c5c.tar.bz2 linux-b00f5c2dc01450bed9fed1a41a637fa917e03c5c.zip |
tty: Re-add external interface for tty_set_termios()
This is needed by Bluetooth hci_uart module to be able to change speed
of Bluetooth controller and local UART.
Signed-off-by: Frederic Danis <frederic.danis@linux.intel.com>
Reviewed-by: Peter Hurley <peter@hurleysoftware.com>
Cc: Marcel Holtmann <marcel@holtmann.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/tty.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/tty.h b/include/linux/tty.h index 358a337af598..fe5623c9af71 100644 --- a/include/linux/tty.h +++ b/include/linux/tty.h @@ -491,6 +491,7 @@ static inline speed_t tty_get_baud_rate(struct tty_struct *tty) extern void tty_termios_copy_hw(struct ktermios *new, struct ktermios *old); extern int tty_termios_hw_change(struct ktermios *a, struct ktermios *b); +extern int tty_set_termios(struct tty_struct *tty, struct ktermios *kt); extern struct tty_ldisc *tty_ldisc_ref(struct tty_struct *); extern void tty_ldisc_deref(struct tty_ldisc *); |