diff options
Diffstat (limited to 'drivers/tty/goldfish.c')
| -rw-r--r-- | drivers/tty/goldfish.c | 7 | 
1 files changed, 3 insertions, 4 deletions
diff --git a/drivers/tty/goldfish.c b/drivers/tty/goldfish.c index d02de3f0326f..4591f940b7a1 100644 --- a/drivers/tty/goldfish.c +++ b/drivers/tty/goldfish.c @@ -125,8 +125,7 @@ static void goldfish_tty_rw(struct goldfish_tty *qtty,  	}  } -static void goldfish_tty_do_write(int line, const char *buf, -				  unsigned int count) +static void goldfish_tty_do_write(int line, const u8 *buf, unsigned int count)  {  	struct goldfish_tty *qtty = &goldfish_ttys[line];  	unsigned long address = (unsigned long)(void *)buf; @@ -186,8 +185,8 @@ static void goldfish_tty_hangup(struct tty_struct *tty)  	tty_port_hangup(tty->port);  } -static int goldfish_tty_write(struct tty_struct *tty, const unsigned char *buf, -								int count) +static ssize_t goldfish_tty_write(struct tty_struct *tty, const u8 *buf, +				  size_t count)  {  	goldfish_tty_do_write(tty->index, buf, count);  	return count;  |