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/lm32_juart.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/lm32_juart.c')
-rw-r--r-- | hw/lm32_juart.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/lm32_juart.c b/hw/lm32_juart.c index fddcf7ea14..5454aa4e4d 100644 --- a/hw/lm32_juart.c +++ b/hw/lm32_juart.c @@ -72,7 +72,7 @@ void lm32_juart_set_jtx(DeviceState *d, uint32_t jtx) s->jtx = jtx; if (s->chr) { - qemu_chr_write(s->chr, &ch, 1); + qemu_chr_fe_write(s->chr, &ch, 1); } } |