Skip to content

Commit

Permalink
um: Remove dead code
Browse files Browse the repository at this point in the history
Signed-off-by: Richard Weinberger <richard@nod.at>
  • Loading branch information
Richard Weinberger committed Jul 28, 2012
1 parent d003e98 commit df7b86f
Showing 1 changed file with 0 additions and 26 deletions.
26 changes: 0 additions & 26 deletions arch/um/drivers/ssl.c
Original file line number Diff line number Diff line change
Expand Up @@ -98,27 +98,6 @@ static int ssl_open(struct tty_struct *tty, struct file *filp)
return err;
}

#if 0
static void ssl_flush_buffer(struct tty_struct *tty)
{
return;
}

static void ssl_stop(struct tty_struct *tty)
{
printk(KERN_ERR "Someone should implement ssl_stop\n");
}

static void ssl_start(struct tty_struct *tty)
{
printk(KERN_ERR "Someone should implement ssl_start\n");
}

void ssl_hangup(struct tty_struct *tty)
{
}
#endif

static const struct tty_operations ssl_ops = {
.open = ssl_open,
.close = line_close,
Expand All @@ -131,11 +110,6 @@ static const struct tty_operations ssl_ops = {
.set_termios = line_set_termios,
.throttle = line_throttle,
.unthrottle = line_unthrottle,
#if 0
.stop = ssl_stop,
.start = ssl_start,
.hangup = ssl_hangup,
#endif
};

/* Changed by ssl_init and referenced by ssl_exit, which are both serialized
Expand Down

0 comments on commit df7b86f

Please sign in to comment.