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 /qemu-char.h | |
parent | e7e71b0ec62d2954635ba8a2462a20a60fa2c147 (diff) |
char: rename qemu_chr_read() -> qemu_chr_be_write()
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'qemu-char.h')
-rw-r--r-- | qemu-char.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qemu-char.h b/qemu-char.h index 72c457b0d2..b16e566b10 100644 --- a/qemu-char.h +++ b/qemu-char.h @@ -97,7 +97,7 @@ void qemu_chr_add_handlers(CharDriverState *s, int qemu_chr_ioctl(CharDriverState *s, int cmd, void *arg); void qemu_chr_generic_open(CharDriverState *s); int qemu_chr_can_read(CharDriverState *s); -void qemu_chr_read(CharDriverState *s, uint8_t *buf, int len); +void qemu_chr_be_write(CharDriverState *s, uint8_t *buf, int len); int qemu_chr_get_msgfd(CharDriverState *s); void qemu_chr_accept_input(CharDriverState *s); int qemu_chr_add_client(CharDriverState *s, int fd); |