summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPeter Hurley2016-01-10 06:35:20 +0100
committerGreg Kroah-Hartman2016-01-28 00:13:28 +0100
commitde5583d670a8b10f157fdcc7afaddfd1ec423a69 (patch)
treefab8cc00091183cab6619f96e75fb55c67b3dd63
parenttty: Eliminate global symbol tty_ldisc_N_TTY (diff)
downloadkernel-qcow2-linux-de5583d670a8b10f157fdcc7afaddfd1ec423a69.tar.gz
kernel-qcow2-linux-de5583d670a8b10f157fdcc7afaddfd1ec423a69.tar.xz
kernel-qcow2-linux-de5583d670a8b10f157fdcc7afaddfd1ec423a69.zip
tty: Remove declarations to non-existent functions
tty_read_raw_data() and tty_signal() no longer exist; remove declarations. Signed-off-by: Peter Hurley <peter@hurleysoftware.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--include/linux/tty.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/include/linux/tty.h b/include/linux/tty.h
index f6c07fd12ef4..26a9b4b3efe9 100644
--- a/include/linux/tty.h
+++ b/include/linux/tty.h
@@ -433,8 +433,6 @@ extern struct device *tty_register_device_attr(struct tty_driver *driver,
void *drvdata,
const struct attribute_group **attr_grp);
extern void tty_unregister_device(struct tty_driver *driver, unsigned index);
-extern int tty_read_raw_data(struct tty_struct *tty, unsigned char *bufp,
- int buflen);
extern void tty_write_message(struct tty_struct *tty, char *msg);
extern int tty_send_xchar(struct tty_struct *tty, char ch);
extern int tty_put_char(struct tty_struct *tty, unsigned char c);
@@ -448,7 +446,6 @@ extern int tty_unthrottle_safe(struct tty_struct *tty);
extern int tty_do_resize(struct tty_struct *tty, struct winsize *ws);
extern int is_current_pgrp_orphaned(void);
extern int is_ignored(int sig);
-extern int tty_signal(int sig, struct tty_struct *tty);
extern void tty_hangup(struct tty_struct *tty);
extern void tty_vhangup(struct tty_struct *tty);
extern int tty_hung_up_p(struct file *filp);
d S. Miller2016-10-30