diff options
author | Anthony Liguori | 2011-08-15 18:17:34 +0200 |
---|---|---|
committer | Anthony Liguori | 2011-08-22 17:17:37 +0200 |
commit | 41084f1badadcb054823dfe57c58eafefe50d8a8 (patch) | |
tree | 1e98ac9194a8df68f5b9672e6ab919e45d45f9c2 /hw/escc.c | |
parent | char: rename qemu_chr_guest_close() -> qemu_chr_fe_close() (diff) | |
download | qemu-41084f1badadcb054823dfe57c58eafefe50d8a8.tar.gz qemu-41084f1badadcb054823dfe57c58eafefe50d8a8.tar.xz qemu-41084f1badadcb054823dfe57c58eafefe50d8a8.zip |
char: qemu_chr_ioctl() -> qemu_chr_fe_ioctl()
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/escc.c')
-rw-r--r-- | hw/escc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -460,7 +460,7 @@ static void escc_update_parameters(ChannelState *s) ssp.data_bits = data_bits; ssp.stop_bits = stop_bits; trace_escc_update_parameters(CHN_C(s), speed, parity, data_bits, stop_bits); - qemu_chr_ioctl(s->chr, CHR_IOCTL_SERIAL_SET_PARAMS, &ssp); + qemu_chr_fe_ioctl(s->chr, CHR_IOCTL_SERIAL_SET_PARAMS, &ssp); } static void escc_mem_write(void *opaque, target_phys_addr_t addr, |