summaryrefslogtreecommitdiff
path: root/hw/char
diff options
context:
space:
mode:
authorKONRAD Frederic <fred.konrad@greensocs.com>2013-04-24 10:21:22 +0200
committerAnthony Liguori <aliguori@us.ibm.com>2013-04-24 11:50:21 -0500
commit6a1a8cc7af5741a4221e1c5bc80c41390d896ff5 (patch)
tree39abf80dd8ff2dcf30563832304c01b027cd353e /hw/char
parent1c819449836b926d6f9db860127211ef092da88e (diff)
downloadqemu-6a1a8cc7af5741a4221e1c5bc80c41390d896ff5.tar.gz
virtio: cleanup: init and exit function.
This clean the init and the exit functions and rename virtio_common_cleanup to virtio_cleanup. Signed-off-by: KONRAD Frederic <fred.konrad@greensocs.com> Message-id: 1366791683-5350-7-git-send-email-fred.konrad@greensocs.com Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/char')
-rw-r--r--hw/char/virtio-serial-bus.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/char/virtio-serial-bus.c b/hw/char/virtio-serial-bus.c
index 6a5b8b670c..3787ad2e1d 100644
--- a/hw/char/virtio-serial-bus.c
+++ b/hw/char/virtio-serial-bus.c
@@ -1001,7 +1001,7 @@ static int virtio_serial_device_exit(DeviceState *dev)
qemu_free_timer(vser->post_load->timer);
g_free(vser->post_load);
}
- virtio_common_cleanup(vdev);
+ virtio_cleanup(vdev);
return 0;
}