From 2cc6e0a14210d2e80173ec6b4611e7e3c50c2cce Mon Sep 17 00:00:00 2001 From: Anthony Liguori Date: Mon, 15 Aug 2011 11:17:28 -0500 Subject: char: rename qemu_chr_write() -> qemu_chr_fe_write() Signed-off-by: Anthony Liguori --- hw/pl011.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'hw/pl011.c') diff --git a/hw/pl011.c b/hw/pl011.c index 997ce84..707a161 100644 --- a/hw/pl011.c +++ b/hw/pl011.c @@ -133,7 +133,7 @@ static void pl011_write(void *opaque, target_phys_addr_t offset, /* ??? Check if transmitter is enabled. */ ch = value; if (s->chr) - qemu_chr_write(s->chr, &ch, 1); + qemu_chr_fe_write(s->chr, &ch, 1); s->int_level |= PL011_INT_TX; pl011_update(s); break; -- cgit v1.1