summaryrefslogtreecommitdiffstats
path: root/hw/isa/lpc_ich9.c
diff options
context:
space:
mode:
authorEduardo Habkost2020-08-24 23:59:33 +0200
committerEduardo Habkost2020-09-09 19:20:22 +0200
commit0fc8289a26327759484ccc03ccdfb08f850c7579 (patch)
tree749840006a8f6f5a964a3d8bd3db8d5076d204b7 /hw/isa/lpc_ich9.c
parentomap_intc: Use typedef name for instance_size (diff)
downloadqemu-0fc8289a26327759484ccc03ccdfb08f850c7579.tar.gz
qemu-0fc8289a26327759484ccc03ccdfb08f850c7579.tar.xz
qemu-0fc8289a26327759484ccc03ccdfb08f850c7579.zip
lpc_ich9: Use typedef name for instance_size
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 <ehabkost@redhat.com> Message-Id: <20200824215936.2961951-4-ehabkost@redhat.com> Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Diffstat (limited to 'hw/isa/lpc_ich9.c')
-rw-r--r--hw/isa/lpc_ich9.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/isa/lpc_ich9.c b/hw/isa/lpc_ich9.c
index cd6e169d47..3303d2eab6 100644
--- a/hw/isa/lpc_ich9.c
+++ b/hw/isa/lpc_ich9.c
@@ -792,7 +792,7 @@ static void ich9_lpc_class_init(ObjectClass *klass, void *data)
static const TypeInfo ich9_lpc_info = {
.name = TYPE_ICH9_LPC_DEVICE,
.parent = TYPE_PCI_DEVICE,
- .instance_size = sizeof(struct ICH9LPCState),
+ .instance_size = sizeof(ICH9LPCState),
.instance_init = ich9_lpc_initfn,
.class_init = ich9_lpc_class_init,
.interfaces = (InterfaceInfo[]) {