diff options
author | Peter Hurley <peter@hurleysoftware.com> | 2015-11-08 09:18:31 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-12-13 19:59:48 -0800 |
commit | 4de91ebcc788f81d2a974d91208f5560ddf36378 (patch) | |
tree | 092c7b2695a59c58e5e99c52fd3cbf0d7525e5f0 /include/linux/tty.h | |
parent | d1d3a0f7448fe038ce7e94e2c281dcd2f91b23c6 (diff) | |
download | op-kernel-dev-4de91ebcc788f81d2a974d91208f5560ddf36378.zip op-kernel-dev-4de91ebcc788f81d2a974d91208f5560ddf36378.tar.gz |
tty: Remove dead tty_write_flush() declaration and macro
tty_write_flush() has no definition and the TTY_WRITE_FLUSH() macro
is never invoked; remove.
Signed-off-by: Peter Hurley <peter@hurleysoftware.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'include/linux/tty.h')
-rw-r--r-- | include/linux/tty.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/include/linux/tty.h b/include/linux/tty.h index f06dd7a..2fd8708 100644 --- a/include/linux/tty.h +++ b/include/linux/tty.h @@ -345,8 +345,6 @@ struct tty_file_private { #define TTY_HUPPED 18 /* Post driver->hangup() */ #define TTY_LDISC_HALTED 22 /* Line discipline is halted */ -#define TTY_WRITE_FLUSH(tty) tty_write_flush((tty)) - /* Values for tty->flow_change */ #define TTY_THROTTLE_SAFE 1 #define TTY_UNTHROTTLE_SAFE 2 @@ -395,8 +393,6 @@ static inline int __init tty_init(void) { return 0; } #endif -extern void tty_write_flush(struct tty_struct *); - extern struct ktermios tty_std_termios; extern int vcs_init(void); |