diff options
author | Anthony Liguori <aliguori@us.ibm.com> | 2011-08-15 11:17:34 -0500 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2011-08-22 10:17:37 -0500 |
commit | 41084f1badadcb054823dfe57c58eafefe50d8a8 (patch) | |
tree | 1e98ac9194a8df68f5b9672e6ab919e45d45f9c2 /qemu-char.h | |
parent | 2817822dced78521ab7c532ea50959aa248ea8c0 (diff) |
char: qemu_chr_ioctl() -> qemu_chr_fe_ioctl()
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 c95b554660..513daa90e7 100644 --- a/qemu-char.h +++ b/qemu-char.h @@ -94,7 +94,7 @@ void qemu_chr_add_handlers(CharDriverState *s, IOReadHandler *fd_read, IOEventHandler *fd_event, void *opaque); -int qemu_chr_ioctl(CharDriverState *s, int cmd, void *arg); +int qemu_chr_fe_ioctl(CharDriverState *s, int cmd, void *arg); void qemu_chr_generic_open(CharDriverState *s); int qemu_chr_be_can_write(CharDriverState *s); void qemu_chr_be_write(CharDriverState *s, uint8_t *buf, int len); |