diff options
author | Andreas Färber <afaerber@suse.de> | 2012-08-20 19:07:59 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2012-08-22 10:47:15 -0500 |
commit | ab6153673727cc1b88258675fa02113cf3271aa8 (patch) | |
tree | 5d01ed8a1d0386533d40e79ce622b3fb1f76ce66 /hw/dec_pci.h | |
parent | c5589ee9745319944886231935680fb8d110e6cb (diff) |
dec_pci: QOM'ify DEC 21154 PCI-PCI bridge
Introduce type constant. Introduce cast macro and drop dummy busdev
field used with FROM_SYSBUS() that would've broken SYS_BUS_DEVICE().
Avoid accessing parent fields directly.
Signed-off-by: Andreas Färber <afaerber@suse.de>
Acked-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/dec_pci.h')
-rw-r--r-- | hw/dec_pci.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/hw/dec_pci.h b/hw/dec_pci.h index 79264bac84..17dc0c2b0a 100644 --- a/hw/dec_pci.h +++ b/hw/dec_pci.h @@ -3,6 +3,8 @@ #include "qemu-common.h" +#define TYPE_DEC_21154 "dec-21154-sysbus" + PCIBus *pci_dec_21154_init(PCIBus *parent_bus, int devfn); #endif |