aboutsummaryrefslogtreecommitdiff
path: root/hw
diff options
context:
space:
mode:
authorAnthony Liguori <aliguori@us.ibm.com>2011-08-15 11:17:32 -0500
committerAnthony Liguori <aliguori@us.ibm.com>2011-08-22 10:17:16 -0500
commitc9d830eddc58db80a954a4eef1dc1e6ef8ca55b3 (patch)
tree76e93aa5fbdf20eb6adf59b392918e23d4ee066f /hw
parent909cda12b57d8742d67470c5350ecc4012267cb2 (diff)
downloadqemu-c9d830eddc58db80a954a4eef1dc1e6ef8ca55b3.zip
qemu-c9d830eddc58db80a954a4eef1dc1e6ef8ca55b3.tar.gz
qemu-c9d830eddc58db80a954a4eef1dc1e6ef8ca55b3.tar.bz2
char: rename qemu_chr_guest_open() -> qemu_chr_fe_open()
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw')
-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 6c386fa..21f752b 100644
--- a/hw/virtio-console.c
+++ b/hw/virtio-console.c
@@ -52,7 +52,7 @@ static void guest_open(VirtIOSerialPort *port)
{
VirtConsole *vcon = DO_UPCAST(VirtConsole, port, port);
- qemu_chr_guest_open(vcon->chr);
+ qemu_chr_fe_open(vcon->chr);
}
/* Callback function that's called when the guest closes the port */