aboutsummaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
Diffstat (limited to 'arch')
-rw-r--r--arch/um/drivers/ssl.c26
1 files changed, 0 insertions, 26 deletions
diff --git a/arch/um/drivers/ssl.c b/arch/um/drivers/ssl.c
index a39d53eaf57b..cba95d959af1 100644
--- a/arch/um/drivers/ssl.c
+++ b/arch/um/drivers/ssl.c
@@ -98,27 +98,6 @@ static int ssl_open(struct tty_struct *tty, struct file *filp)
98 return err; 98 return err;
99} 99}
100 100
101#if 0
102static void ssl_flush_buffer(struct tty_struct *tty)
103{
104 return;
105}
106
107static void ssl_stop(struct tty_struct *tty)
108{
109 printk(KERN_ERR "Someone should implement ssl_stop\n");
110}
111
112static void ssl_start(struct tty_struct *tty)
113{
114 printk(KERN_ERR "Someone should implement ssl_start\n");
115}
116
117void ssl_hangup(struct tty_struct *tty)
118{
119}
120#endif
121
122static const struct tty_operations ssl_ops = { 101static const struct tty_operations ssl_ops = {
123 .open = ssl_open, 102 .open = ssl_open,
124 .close = line_close, 103 .close = line_close,
@@ -131,11 +110,6 @@ static const struct tty_operations ssl_ops = {
131 .set_termios = line_set_termios, 110 .set_termios = line_set_termios,
132 .throttle = line_throttle, 111 .throttle = line_throttle,
133 .unthrottle = line_unthrottle, 112 .unthrottle = line_unthrottle,
134#if 0
135 .stop = ssl_stop,
136 .start = ssl_start,
137 .hangup = ssl_hangup,
138#endif
139}; 113};
140 114
141/* Changed by ssl_init and referenced by ssl_exit, which are both serialized 115/* Changed by ssl_init and referenced by ssl_exit, which are both serialized