diff options
author | Alex Williamson | 2013-03-14 23:01:11 +0100 |
---|---|---|
committer | Michael S. Tsirkin | 2013-03-26 20:02:18 +0100 |
commit | 60a0e44320cc2601236450fbe95d952830192a1d (patch) | |
tree | 1b7c7045b82c95019798fdf314be12d052e4a748 /hw/gt64xxx.c | |
parent | pci: Move PCI and PCIE type defines (diff) | |
download | qemu-60a0e44320cc2601236450fbe95d952830192a1d.tar.gz qemu-60a0e44320cc2601236450fbe95d952830192a1d.tar.xz qemu-60a0e44320cc2601236450fbe95d952830192a1d.zip |
pci: Allow PCI bus creation interfaces to specify the type of bus
No change to any types.
Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'hw/gt64xxx.c')
-rw-r--r-- | hw/gt64xxx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/gt64xxx.c b/hw/gt64xxx.c index c73a58a045..37be9c2a56 100644 --- a/hw/gt64xxx.c +++ b/hw/gt64xxx.c @@ -1107,7 +1107,7 @@ PCIBus *gt64120_register(qemu_irq *pic) pic, get_system_memory(), get_system_io(), - PCI_DEVFN(18, 0), 4); + PCI_DEVFN(18, 0), 4, TYPE_PCI_BUS); memory_region_init_io(&d->ISD_mem, &isd_mem_ops, d, "isd-mem", 0x1000); pci_create_simple(phb->bus, PCI_DEVFN(0, 0), "gt64120_pci"); |