diff options
author | Anthony Liguori <aliguori@us.ibm.com> | 2011-08-15 11:17:31 -0500 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2011-08-22 10:17:16 -0500 |
commit | 909cda12b57d8742d67470c5350ecc4012267cb2 (patch) | |
tree | 4722cec328a84a678ab595c2640782695cbac719 /console.c | |
parent | fa5efccb2a063f1dee46ed3ebd9192b318009f65 (diff) |
char: rename qemu_chr_can_read() -> qemu_chr_be_can_read()
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
@@ -1123,7 +1123,7 @@ static void kbd_send_chars(void *opaque) int len; uint8_t buf[16]; - len = qemu_chr_can_read(s->chr); + len = qemu_chr_be_can_write(s->chr); if (len > s->out_fifo.count) len = s->out_fifo.count; if (len > 0) { |