On 9/23/25 15:53, Mark Cave-Ayland wrote:
This changes the prefix to match the name of the QOM type.
Signed-off-by: Mark Cave-Ayland <[email protected]>
---
hw/vfio/pci.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/hw/vfio/pci.c b/hw/vfio/pci.c
index a511f99a2c..e8d2e36df0 100644
--- a/hw/vfio/pci.c
+++ b/hw/vfio/pci.c
@@ -3672,7 +3672,7 @@ static void vfio_pci_device_class_init(ObjectClass
*klass, const void *data)
pdc->config_write = vfio_pci_write_config;
}
-static const TypeInfo vfio_pci_base_dev_info = {
+static const TypeInfo vfio_pci_device_info = {
.name = TYPE_VFIO_PCI_DEVICE,
.parent = TYPE_PCI_DEVICE,
.instance_size = sizeof(VFIOPCIDevice),
@@ -3973,7 +3973,7 @@ static void register_vfio_pci_dev_type(void)
vfio_pci_migration_multifd_transfer_prop = qdev_prop_on_off_auto;
vfio_pci_migration_multifd_transfer_prop.realized_set_allowed = true;
- type_register_static(&vfio_pci_base_dev_info);
+ type_register_static(&vfio_pci_device_info);
type_register_static(&vfio_pci_info);
type_register_static(&vfio_pci_nohotplug_dev_info);
}
Reviewed-by: Cédric Le Goater <[email protected]>
Thanks,
C.