diff options
Diffstat (limited to 'hw/strongarm.c')
-rw-r--r-- | hw/strongarm.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |