diff options
Diffstat (limited to 'hw/escc.c')
| -rw-r--r-- | hw/escc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/escc.c b/hw/escc.c index 76d94f30fe..b2391b284a 100644 --- a/hw/escc.c +++ b/hw/escc.c @@ -551,7 +551,7 @@ static void escc_mem_write(void *opaque, target_phys_addr_t addr, s->tx = val; if (s->wregs[W_TXCTRL2] & TXCTRL2_TXEN) { // tx enabled if (s->chr) - qemu_chr_write(s->chr, &s->tx, 1); + qemu_chr_fe_write(s->chr, &s->tx, 1); else if (s->type == kbd && !s->disabled) { handle_kbd_command(s, val); } |