Commit 229e1e80 authored by Paolo \'Blaisorblade\' Giarrusso's avatar Paolo \'Blaisorblade\' Giarrusso Committed by Linus Torvalds

[PATCH] uml: fix mainline lazyness about TTY layer patch

While changing the TTY layer, an API parameter was removed, so it was
removed by almost all calls, changing their prototype.  But one use of one
such function was not updated, breaking UML compilation.  This is the fix.
Signed-off-by: default avatarPaolo 'Blaisorblade' Giarrusso <blaisorblade_spam@yahoo.it>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 68b7fc90
......@@ -119,7 +119,7 @@ static int ssl_write(struct tty_struct * tty,
static void ssl_put_char(struct tty_struct *tty, unsigned char ch)
{
line_write(serial_lines, tty, 0, &ch, sizeof(ch));
line_write(serial_lines, tty, &ch, sizeof(ch));
}
static void ssl_flush_chars(struct tty_struct *tty)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment