mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 00:33:55 -06:00
char: qemu_chr_ioctl() -> qemu_chr_fe_ioctl()
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
2817822dce
commit
41084f1bad
7 changed files with 29 additions and 29 deletions
|
@ -980,7 +980,7 @@ static void strongarm_uart_update_parameters(StrongARMUARTState *s)
|
|||
ssp.stop_bits = stop_bits;
|
||||
s->char_transmit_time = (get_ticks_per_sec() / speed) * frame_size;
|
||||
if (s->chr) {
|
||||
qemu_chr_ioctl(s->chr, CHR_IOCTL_SERIAL_SET_PARAMS, &ssp);
|
||||
qemu_chr_fe_ioctl(s->chr, CHR_IOCTL_SERIAL_SET_PARAMS, &ssp);
|
||||
}
|
||||
|
||||
DPRINTF(stderr, "%s speed=%d parity=%c data=%d stop=%d\n", s->chr->label,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue