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/sh_serial.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/sh_serial.c')
-rw-r--r-- | hw/sh_serial.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/sh_serial.c b/hw/sh_serial.c index 1767c97fcc..a20c59ef77 100644 --- a/hw/sh_serial.c +++ b/hw/sh_serial.c @@ -105,7 +105,7 @@ static void sh_serial_write(void *opaque, uint32_t offs, uint32_t val) case 0x0c: /* FTDR / TDR */ if (s->chr) { ch = val; - qemu_chr_write(s->chr, &ch, 1); + qemu_chr_fe_write(s->chr, &ch, 1); } s->dr = val; s->flags &= ~SH_SERIAL_FLAG_TDE; |