From fa5efccb2a063f1dee46ed3ebd9192b318009f65 Mon Sep 17 00:00:00 2001 From: Anthony Liguori Date: Mon, 15 Aug 2011 11:17:30 -0500 Subject: char: rename qemu_chr_read() -> qemu_chr_be_write() Signed-off-by: Anthony Liguori --- console.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'console.c') diff --git a/console.c b/console.c index ec529ae..64246b7 100644 --- a/console.c +++ b/console.c @@ -1130,7 +1130,7 @@ static void kbd_send_chars(void *opaque) if (len > sizeof(buf)) len = sizeof(buf); qemu_fifo_read(&s->out_fifo, buf, len); - qemu_chr_read(s->chr, buf, len); + qemu_chr_be_write(s->chr, buf, len); } /* characters are pending: we send them a bit later (XXX: horrible, should change char device API) */ -- cgit v1.1