X-Git-Url: https://repo.jachan.dev/qemu.git/blobdiff_plain/0bf1dbdcc935dfc220a93cd990e947e90706aec6..2cc6e0a14210d2e80173ec6b4611e7e3c50c2cce:/hw/strongarm.c diff --git a/hw/strongarm.c b/hw/strongarm.c index 3a7fd6da8f..84855cbb10 100644 --- a/hw/strongarm.c +++ b/hw/strongarm.c @@ -1067,7 +1067,7 @@ static void strongarm_uart_tx(void *opaque) if (s->utcr3 & UTCR3_LBM) /* loopback */ { strongarm_uart_receive(s, &s->tx_fifo[s->tx_start], 1); } else if (s->chr) { - qemu_chr_write(s->chr, &s->tx_fifo[s->tx_start], 1); + qemu_chr_fe_write(s->chr, &s->tx_fifo[s->tx_start], 1); } s->tx_start = (s->tx_start + 1) % 8;