aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Weinberger <richard@nod.at>2012-06-04 14:58:18 -0400
committerRichard Weinberger <richard@nod.at>2012-07-28 11:47:59 -0400
commitdf7b86f313fd26b5021afde7e66b35f9267b1261 (patch)
tree4aa997f4bb56d9391803eaca491f5fe35cdac295
parentd003e982c1d2b8bf8418c415b0b87175d6a1bda2 (diff)
um: Remove dead code
Signed-off-by: Richard Weinberger <richard@nod.at>
-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