summaryrefslogtreecommitdiffstats
path: root/hw/virtio-console.c
diff options
context:
space:
mode:
authorAnthony Liguori2011-08-15 18:17:33 +0200
committerAnthony Liguori2011-08-22 17:17:16 +0200
commit2817822dced78521ab7c532ea50959aa248ea8c0 (patch)
tree774467582da872451bdffe7cda4455a11d2b517c /hw/virtio-console.c
parentchar: rename qemu_chr_guest_open() -> qemu_chr_fe_open() (diff)
downloadqemu-2817822dced78521ab7c532ea50959aa248ea8c0.tar.gz
qemu-2817822dced78521ab7c532ea50959aa248ea8c0.tar.xz
qemu-2817822dced78521ab7c532ea50959aa248ea8c0.zip
char: rename qemu_chr_guest_close() -> qemu_chr_fe_close()
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/virtio-console.c')
-rw-r--r--hw/virtio-console.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/virtio-console.c b/hw/virtio-console.c
index 21f752b729..d3351c83ff 100644
--- a/hw/virtio-console.c
+++ b/hw/virtio-console.c
@@ -60,7 +60,7 @@ static void guest_close(VirtIOSerialPort *port)
{
VirtConsole *vcon = DO_UPCAST(VirtConsole, port, port);
- qemu_chr_guest_close(vcon->chr);
+ qemu_chr_fe_close(vcon->chr);
}
/* Readiness of the guest to accept data on a port */