diff options
author | Anthony Liguori <aliguori@us.ibm.com> | 2011-08-15 11:17:30 -0500 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2011-08-22 10:17:16 -0500 |
commit | fa5efccb2a063f1dee46ed3ebd9192b318009f65 (patch) | |
tree | f426604b4152eabea1addc7e99b88ad32d23d597 /console.c | |
parent | e7e71b0ec62d2954635ba8a2462a20a60fa2c147 (diff) |
char: rename qemu_chr_read() -> qemu_chr_be_write()
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'console.c')
-rw-r--r-- | console.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) */ |