summaryrefslogtreecommitdiffstats
path: root/hw/dec_pci.c
diff options
context:
space:
mode:
authorAndreas Färber2012-08-20 19:08:09 +0200
committerAnthony Liguori2012-08-22 17:47:17 +0200
commit67c332fd12326a6ef572f07b9d71370ada6a287f (patch)
tree7080117aafe4c4728d86c251a602615f8bc17b43 /hw/dec_pci.c
parentpci: Derive PCI host bridges from TYPE_PCI_HOST_BRIDGE (diff)
downloadqemu-67c332fd12326a6ef572f07b9d71370ada6a287f.tar.gz
qemu-67c332fd12326a6ef572f07b9d71370ada6a287f.tar.xz
qemu-67c332fd12326a6ef572f07b9d71370ada6a287f.zip
pci: Tidy up PCI host bridges
Adopt the QOM parent field name and enforce QOM-style access via casts. Don't just typedef PCIHostState, either use it directly or embed it. Signed-off-by: Andreas Färber <afaerber@suse.de> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/dec_pci.c')
-rw-r--r--hw/dec_pci.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/dec_pci.c b/hw/dec_pci.c
index de16361705..c30ade38bd 100644
--- a/hw/dec_pci.c
+++ b/hw/dec_pci.c
@@ -43,7 +43,7 @@
#define DEC_21154(obj) OBJECT_CHECK(DECState, (obj), TYPE_DEC_21154)
typedef struct DECState {
- PCIHostState host_state;
+ PCIHostState parent_obj;
} DECState;
static int dec_map_irq(PCIDevice *pci_dev, int irq_num)