[PATCH] uml console channels: fix the API of console_write

Since the 4th param is unused, remove it altogether.

Signed-off-by: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>
Acked-by: Jeff Dike <jdike@addtoit.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
Paolo 'Blaisorblade' Giarrusso
2005-11-13 16:07:11 -08:00
committed by Linus Torvalds
parent fd9bc53b99
commit 55c033c1f6
3 changed files with 5 additions and 6 deletions

View File

@@ -20,7 +20,7 @@
#include "choose-mode.h"
#include "mode.h"
int generic_console_write(int fd, const char *buf, int n, void *unused)
int generic_console_write(int fd, const char *buf, int n)
{
struct termios save, new;
int err;