mirror of https://github.com/xqemu/xqemu.git
pci: Move PCI and PCIE type defines
Move these so that we can reference them from a more common header instead of including pci_bus.h everywhere. Signed-off-by: Alex Williamson <alex.williamson@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
This commit is contained in:
parent
3a861c466c
commit
cf09458d64
|
@ -339,6 +339,11 @@ typedef enum {
|
||||||
|
|
||||||
typedef int (*pci_hotplug_fn)(DeviceState *qdev, PCIDevice *pci_dev,
|
typedef int (*pci_hotplug_fn)(DeviceState *qdev, PCIDevice *pci_dev,
|
||||||
PCIHotplugState state);
|
PCIHotplugState state);
|
||||||
|
|
||||||
|
#define TYPE_PCI_BUS "PCI"
|
||||||
|
#define PCI_BUS(obj) OBJECT_CHECK(PCIBus, (obj), TYPE_PCI_BUS)
|
||||||
|
#define TYPE_PCIE_BUS "PCIE"
|
||||||
|
|
||||||
void pci_bus_new_inplace(PCIBus *bus, DeviceState *parent,
|
void pci_bus_new_inplace(PCIBus *bus, DeviceState *parent,
|
||||||
const char *name,
|
const char *name,
|
||||||
MemoryRegion *address_space_mem,
|
MemoryRegion *address_space_mem,
|
||||||
|
|
|
@ -8,10 +8,6 @@
|
||||||
* use accessor functions in pci.h, pci_bridge.h
|
* use accessor functions in pci.h, pci_bridge.h
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#define TYPE_PCI_BUS "PCI"
|
|
||||||
#define PCI_BUS(obj) OBJECT_CHECK(PCIBus, (obj), TYPE_PCI_BUS)
|
|
||||||
#define TYPE_PCIE_BUS "PCIE"
|
|
||||||
|
|
||||||
struct PCIBus {
|
struct PCIBus {
|
||||||
BusState qbus;
|
BusState qbus;
|
||||||
PCIDMAContextFunc dma_context_fn;
|
PCIDMAContextFunc dma_context_fn;
|
||||||
|
|
Loading…
Reference in New Issue