This makes the code consistent with the rest of QOM code in QEMU, and will make automated conversion to type declaration macros simpler.
Signed-off-by: Eduardo Habkost <[email protected]> --- Cc: "Michael S. Tsirkin" <[email protected]> Cc: Gerd Hoffmann <[email protected]> Cc: [email protected] --- hw/display/virtio-vga.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hw/display/virtio-vga.c b/hw/display/virtio-vga.c index f533d7d1b4..7c995ddc81 100644 --- a/hw/display/virtio-vga.c +++ b/hw/display/virtio-vga.c @@ -194,8 +194,8 @@ static void virtio_vga_base_class_init(ObjectClass *klass, void *data) static TypeInfo virtio_vga_base_info = { .name = TYPE_VIRTIO_VGA_BASE, .parent = TYPE_VIRTIO_PCI, - .instance_size = sizeof(struct VirtIOVGABase), - .class_size = sizeof(struct VirtIOVGABaseClass), + .instance_size = sizeof(VirtIOVGABase), + .class_size = sizeof(VirtIOVGABaseClass), .class_init = virtio_vga_base_class_init, .abstract = true, }; @@ -224,7 +224,7 @@ static void virtio_vga_inst_initfn(Object *obj) static VirtioPCIDeviceTypeInfo virtio_vga_info = { .generic_name = TYPE_VIRTIO_VGA, .parent = TYPE_VIRTIO_VGA_BASE, - .instance_size = sizeof(struct VirtIOVGA), + .instance_size = sizeof(VirtIOVGA), .instance_init = virtio_vga_inst_initfn, }; -- 2.26.2
