From 60a0e44320cc2601236450fbe95d952830192a1d Mon Sep 17 00:00:00 2001 From: Alex Williamson Date: Thu, 14 Mar 2013 16:01:11 -0600 Subject: pci: Allow PCI bus creation interfaces to specify the type of bus No change to any types. Signed-off-by: Alex Williamson Signed-off-by: Michael S. Tsirkin --- hw/ioh3420.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'hw/ioh3420.c') diff --git a/hw/ioh3420.c b/hw/ioh3420.c index 43f855427b..74d84d4dda 100644 --- a/hw/ioh3420.c +++ b/hw/ioh3420.c @@ -97,7 +97,7 @@ static int ioh3420_initfn(PCIDevice *d) PCIESlot *s = DO_UPCAST(PCIESlot, port, p); int rc; - rc = pci_bridge_initfn(d); + rc = pci_bridge_initfn(d, TYPE_PCI_BUS); if (rc < 0) { return rc; } -- cgit v1.2.3 From afb661eb902f4ad1456d57b31cdd02f0b4aac33f Mon Sep 17 00:00:00 2001 From: Alex Williamson Date: Thu, 14 Mar 2013 16:01:17 -0600 Subject: pci: Q35, Root Ports, and Switches create PCI Express buses Convert q35, ioh3420, xio3130_upstream, and xio3130_downstream to use the new TYPE_PCIE_BUS. Signed-off-by: Alex Williamson Signed-off-by: Michael S. Tsirkin --- hw/ioh3420.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'hw/ioh3420.c') diff --git a/hw/ioh3420.c b/hw/ioh3420.c index 74d84d4dda..5cff61e095 100644 --- a/hw/ioh3420.c +++ b/hw/ioh3420.c @@ -97,7 +97,7 @@ static int ioh3420_initfn(PCIDevice *d) PCIESlot *s = DO_UPCAST(PCIESlot, port, p); int rc; - rc = pci_bridge_initfn(d, TYPE_PCI_BUS); + rc = pci_bridge_initfn(d, TYPE_PCIE_BUS); if (rc < 0) { return rc; } -- cgit v1.2.3