summaryrefslogtreecommitdiffstats
path: root/hw/strongarm.c
diff options
context:
space:
mode:
authorAnthony Liguori2011-08-15 18:17:28 +0200
committerAnthony Liguori2011-08-22 17:17:15 +0200
commit2cc6e0a14210d2e80173ec6b4611e7e3c50c2cce (patch)
treeb9a5883e50ebcee0f3f506de1523b84a597f6e8f /hw/strongarm.c
parenttcg/ppc64: fix 16/32 mixup (diff)
downloadqemu-2cc6e0a14210d2e80173ec6b4611e7e3c50c2cce.tar.gz
qemu-2cc6e0a14210d2e80173ec6b4611e7e3c50c2cce.tar.xz
qemu-2cc6e0a14210d2e80173ec6b4611e7e3c50c2cce.zip
char: rename qemu_chr_write() -> qemu_chr_fe_write()
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/strongarm.c')
-rw-r--r--hw/strongarm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/strongarm.c b/hw/strongarm.c
index 3a7fd6da8f..84855cbb10 100644
--- a/hw/strongarm.c
+++ b/hw/strongarm.c
@@ -1067,7 +1067,7 @@ static void strongarm_uart_tx(void *opaque)
if (s->utcr3 & UTCR3_LBM) /* loopback */ {
strongarm_uart_receive(s, &s->tx_fifo[s->tx_start], 1);
} else if (s->chr) {
- qemu_chr_write(s->chr, &s->tx_fifo[s->tx_start], 1);
+ qemu_chr_fe_write(s->chr, &s->tx_fifo[s->tx_start], 1);
}
s->tx_start = (s->tx_start + 1) % 8;