summary refs log tree commit diff stats
path: root/include/hw/isa
diff options
context:
space:
mode:
authorAndreas Färber <afaerber@suse.de>2013-04-27 22:18:40 +0200
committerAnthony Liguori <aliguori@us.ibm.com>2013-04-29 08:27:47 -0500
commit29bb5317cb7b23422b2612025d56055bbf0bbd02 (patch)
treeaaa01076cc271286ac563c63310e5fdd2ee38ee0 /include/hw/isa
parenteb1440e7ec522784f4351bb5e88436cc3cd9abd7 (diff)
downloadfocaccia-qemu-29bb5317cb7b23422b2612025d56055bbf0bbd02.tar.gz
focaccia-qemu-29bb5317cb7b23422b2612025d56055bbf0bbd02.zip
i8259: QOM cleanups
Eliminate DO_UPCAST() for PICCommonState. Prepares for ISA realizefn.

Also give the i8259_common type registration functions unique names
while at it.

Signed-off-by: Andreas Färber <afaerber@suse.de>
Signed-off-by: Andreas Färber <afaerber@suse.de>
Message-id: 1367093935-29091-6-git-send-email-afaerber@suse.de
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'include/hw/isa')
-rw-r--r--include/hw/isa/i8259_internal.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/hw/isa/i8259_internal.h b/include/hw/isa/i8259_internal.h
index d3ddb27f4f..b4e757a461 100644
--- a/include/hw/isa/i8259_internal.h
+++ b/include/hw/isa/i8259_internal.h
@@ -48,7 +48,8 @@ typedef struct PICCommonClass
 } PICCommonClass;
 
 struct PICCommonState {
-    ISADevice dev;
+    ISADevice parent_obj;
+
     uint8_t last_irr; /* edge detection */
     uint8_t irr; /* interrupt request register */
     uint8_t imr; /* interrupt mask register */