diff options
author | Anthony Liguori <aliguori@us.ibm.com> | 2011-08-15 11:17:28 -0500 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2011-08-22 10:17:15 -0500 |
commit | 2cc6e0a14210d2e80173ec6b4611e7e3c50c2cce (patch) | |
tree | b9a5883e50ebcee0f3f506de1523b84a597f6e8f /hw/escc.c | |
parent | 0bf1dbdcc935dfc220a93cd990e947e90706aec6 (diff) |
char: rename qemu_chr_write() -> qemu_chr_fe_write()
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/escc.c')
-rw-r--r-- | hw/escc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); } |