summary refs log tree commit diff stats
path: root/hw/mcf_uart.c
diff options
context:
space:
mode:
Diffstat (limited to 'hw/mcf_uart.c')
-rw-r--r--hw/mcf_uart.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/mcf_uart.c b/hw/mcf_uart.c
index 6118ccb604..e6b2ab067a 100644
--- a/hw/mcf_uart.c
+++ b/hw/mcf_uart.c
@@ -110,7 +110,7 @@ static void mcf_uart_do_tx(mcf_uart_state *s)
 {
     if (s->tx_enabled && (s->sr & MCF_UART_TxEMP) == 0) {
         if (s->chr)
-            qemu_chr_write(s->chr, (unsigned char *)&s->tb, 1);
+            qemu_chr_fe_write(s->chr, (unsigned char *)&s->tb, 1);
         s->sr |= MCF_UART_TxEMP;
     }
     if (s->tx_enabled) {