mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-08 18:23:57 -06:00
hw/misc/vmcoreinfo: Declare QOM type using DEFINE_TYPES macro
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Daniel P. Berrangé <berrange@redhat.com> Message-Id: <20241219153857.57450-2-philmd@linaro.org>
This commit is contained in:
parent
5a7b6029c1
commit
3154922c7f
1 changed files with 8 additions and 11 deletions
|
@ -93,16 +93,13 @@ static void vmcoreinfo_device_class_init(ObjectClass *klass, void *data)
|
|||
set_bit(DEVICE_CATEGORY_MISC, dc->categories);
|
||||
}
|
||||
|
||||
static const TypeInfo vmcoreinfo_device_info = {
|
||||
.name = VMCOREINFO_DEVICE,
|
||||
.parent = TYPE_DEVICE,
|
||||
.instance_size = sizeof(VMCoreInfoState),
|
||||
.class_init = vmcoreinfo_device_class_init,
|
||||
static const TypeInfo vmcoreinfo_types[] = {
|
||||
{
|
||||
.name = VMCOREINFO_DEVICE,
|
||||
.parent = TYPE_DEVICE,
|
||||
.instance_size = sizeof(VMCoreInfoState),
|
||||
.class_init = vmcoreinfo_device_class_init,
|
||||
}
|
||||
};
|
||||
|
||||
static void vmcoreinfo_register_types(void)
|
||||
{
|
||||
type_register_static(&vmcoreinfo_device_info);
|
||||
}
|
||||
|
||||
type_init(vmcoreinfo_register_types)
|
||||
DEFINE_TYPES(vmcoreinfo_types)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue