diff options
author | Richard Weinberger <richard@nod.at> | 2012-06-04 14:58:18 -0400 |
---|---|---|
committer | Richard Weinberger <richard@nod.at> | 2012-07-28 11:47:59 -0400 |
commit | df7b86f313fd26b5021afde7e66b35f9267b1261 (patch) | |
tree | 4aa997f4bb56d9391803eaca491f5fe35cdac295 /arch | |
parent | d003e982c1d2b8bf8418c415b0b87175d6a1bda2 (diff) |
um: Remove dead code
Signed-off-by: Richard Weinberger <richard@nod.at>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/um/drivers/ssl.c | 26 |
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 | ||
102 | static void ssl_flush_buffer(struct tty_struct *tty) | ||
103 | { | ||
104 | return; | ||
105 | } | ||
106 | |||
107 | static void ssl_stop(struct tty_struct *tty) | ||
108 | { | ||
109 | printk(KERN_ERR "Someone should implement ssl_stop\n"); | ||
110 | } | ||
111 | |||
112 | static void ssl_start(struct tty_struct *tty) | ||
113 | { | ||
114 | printk(KERN_ERR "Someone should implement ssl_start\n"); | ||
115 | } | ||
116 | |||
117 | void ssl_hangup(struct tty_struct *tty) | ||
118 | { | ||
119 | } | ||
120 | #endif | ||
121 | |||
122 | static const struct tty_operations ssl_ops = { | 101 | static 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 |