summaryrefslogtreecommitdiffstats
path: root/spice-qemu-char.c
diff options
context:
space:
mode:
authorMarc-André Lureau2016-12-08 14:34:16 +0100
committerMarc-André Lureau2017-01-31 10:01:46 +0100
commit18c508acdbdb7ef21837d1ce0d75c9d9c55381f6 (patch)
tree12dccfd4d8b071df65cab4c683887d99ce607abe /spice-qemu-char.c
parentMAINTAINERS: add myself to qemu-char.c (diff)
downloadqemu-18c508acdbdb7ef21837d1ce0d75c9d9c55381f6.tar.gz
qemu-18c508acdbdb7ef21837d1ce0d75c9d9c55381f6.tar.xz
qemu-18c508acdbdb7ef21837d1ce0d75c9d9c55381f6.zip
spice-qemu-char: convert to finalize
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com>
Diffstat (limited to 'spice-qemu-char.c')
-rw-r--r--spice-qemu-char.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/spice-qemu-char.c b/spice-qemu-char.c
index dd97c17fca..3902202a35 100644
--- a/spice-qemu-char.c
+++ b/spice-qemu-char.c
@@ -210,9 +210,9 @@ static int spice_chr_write(Chardev *chr, const uint8_t *buf, int len)
return read_bytes;
}
-static void spice_chr_free(struct Chardev *chr)
+static void char_spice_finalize(Object *obj)
{
- SpiceChardev *s = SPICE_CHARDEV(chr);
+ SpiceChardev *s = SPICE_CHARDEV(obj);
vmc_unregister_interface(s);
QLIST_REMOVE(s, next);
@@ -365,13 +365,13 @@ static void char_spice_class_init(ObjectClass *oc, void *data)
cc->chr_write = spice_chr_write;
cc->chr_add_watch = spice_chr_add_watch;
cc->chr_accept_input = spice_chr_accept_input;
- cc->chr_free = spice_chr_free;
}
static const TypeInfo char_spice_type_info = {
.name = TYPE_CHARDEV_SPICE,
.parent = TYPE_CHARDEV,
.instance_size = sizeof(SpiceChardev),
+ .instance_finalize = char_spice_finalize,
.class_init = char_spice_class_init,
.abstract = true,
};