msmouse: convert to finalize
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com>
This commit is contained in:
parent
e96ebf494a
commit
8955e8914c
@ -139,9 +139,9 @@ static int msmouse_chr_write(struct Chardev *s, const uint8_t *buf, int len)
|
|||||||
return len;
|
return len;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void msmouse_chr_free(struct Chardev *chr)
|
static void char_msmouse_finalize(Object *obj)
|
||||||
{
|
{
|
||||||
MouseChardev *mouse = MOUSE_CHARDEV(chr);
|
MouseChardev *mouse = MOUSE_CHARDEV(obj);
|
||||||
|
|
||||||
qemu_input_handler_unregister(mouse->hs);
|
qemu_input_handler_unregister(mouse->hs);
|
||||||
}
|
}
|
||||||
@ -172,13 +172,13 @@ static void char_msmouse_class_init(ObjectClass *oc, void *data)
|
|||||||
cc->open = msmouse_chr_open;
|
cc->open = msmouse_chr_open;
|
||||||
cc->chr_write = msmouse_chr_write;
|
cc->chr_write = msmouse_chr_write;
|
||||||
cc->chr_accept_input = msmouse_chr_accept_input;
|
cc->chr_accept_input = msmouse_chr_accept_input;
|
||||||
cc->chr_free = msmouse_chr_free;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static const TypeInfo char_msmouse_type_info = {
|
static const TypeInfo char_msmouse_type_info = {
|
||||||
.name = TYPE_CHARDEV_MSMOUSE,
|
.name = TYPE_CHARDEV_MSMOUSE,
|
||||||
.parent = TYPE_CHARDEV,
|
.parent = TYPE_CHARDEV,
|
||||||
.instance_size = sizeof(MouseChardev),
|
.instance_size = sizeof(MouseChardev),
|
||||||
|
.instance_finalize = char_msmouse_finalize,
|
||||||
.class_init = char_msmouse_class_init,
|
.class_init = char_msmouse_class_init,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user