summaryrefslogtreecommitdiff
path: root/hw/msmouse.c
diff options
context:
space:
mode:
authorAnthony Liguori <aliguori@us.ibm.com>2011-08-15 11:17:30 -0500
committerAnthony Liguori <aliguori@us.ibm.com>2011-08-22 10:17:16 -0500
commitfa5efccb2a063f1dee46ed3ebd9192b318009f65 (patch)
treef426604b4152eabea1addc7e99b88ad32d23d597 /hw/msmouse.c
parente7e71b0ec62d2954635ba8a2462a20a60fa2c147 (diff)
downloadqemu-fa5efccb2a063f1dee46ed3ebd9192b318009f65.tar.gz
qemu-fa5efccb2a063f1dee46ed3ebd9192b318009f65.tar.bz2
qemu-fa5efccb2a063f1dee46ed3ebd9192b318009f65.zip
char: rename qemu_chr_read() -> qemu_chr_be_write()
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/msmouse.c')
-rw-r--r--hw/msmouse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/msmouse.c b/hw/msmouse.c
index b611c2f236..c3b57ea31c 100644
--- a/hw/msmouse.c
+++ b/hw/msmouse.c
@@ -50,7 +50,7 @@ static void msmouse_event(void *opaque,
/* We always send the packet of, so that we do not have to keep track
of previous state of the middle button. This can potentially confuse
some very old drivers for two button mice though. */
- qemu_chr_read(chr, bytes, 4);
+ qemu_chr_be_write(chr, bytes, 4);
}
static int msmouse_chr_write (struct CharDriverState *s, const uint8_t *buf, int len)