diff options
author | Johan Hovold <johan@kernel.org> | 2017-06-06 12:54:41 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2017-06-13 11:49:58 +0200 |
commit | 7b08579f5c2a5c0e94b4a9f298339c2fdf0fcc89 (patch) | |
tree | 35302256ad9c3e76793a3ef6f7c5d0be2a76fa22 /include/linux/tty.h | |
parent | 41b4d581f219ecb56cd52d5eb45f8e7acfbe61ab (diff) | |
download | linux-7b08579f5c2a5c0e94b4a9f298339c2fdf0fcc89.tar.gz linux-7b08579f5c2a5c0e94b4a9f298339c2fdf0fcc89.tar.bz2 linux-7b08579f5c2a5c0e94b4a9f298339c2fdf0fcc89.zip |
tty: drop unused alt_speed from tty_struct
Drop the now unused alt_speed field from struct tty_struct.
Setting an alt_speed using the ASYNC_SPD flags has been deprecated since
v2.1.69, and has been broken for all tty drivers but serial-core since
v3.10 and commit 6865ff222cca ("TTY: do not warn about setting speed via
SPD_*") without anyone noticing.
Note that serial-core still supports changing speed using TIOCSSERIAL
and SPD flags (including "alt-speeds"), but also warns about it being
deprecated since pre-git.
Signed-off-by: Johan Hovold <johan@kernel.org>
Reviewed-by: Andy Shevchenko <andy.shevchenko@gmail.com>
Reviewed-by: Alan Cox <alan@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'include/linux/tty.h')
-rw-r--r-- | include/linux/tty.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/linux/tty.h b/include/linux/tty.h index eccb4ec30a8a..585cf2b5ca94 100644 --- a/include/linux/tty.h +++ b/include/linux/tty.h @@ -316,7 +316,6 @@ struct tty_struct { struct tty_struct *link; struct fasync_struct *fasync; - int alt_speed; /* For magic substitution of 38400 bps */ wait_queue_head_t write_wait; wait_queue_head_t read_wait; struct work_struct hangup_work; |