diff options
| author | Michael S. Tsirkin | 2013-09-10 07:43:48 +0200 |
|---|---|---|
| committer | Michael S. Tsirkin | 2013-10-14 16:48:51 +0200 |
| commit | 079e3e7012a0e3ff80b4786e67f5a5d4341dcd51 (patch) | |
| tree | 5dc9c7720811a6e1f1875a20745f70aad28a0f31 | |
| parent | loader: support for unmapped ROM blobs (diff) | |
| download | qemu-079e3e7012a0e3ff80b4786e67f5a5d4341dcd51.tar.gz qemu-079e3e7012a0e3ff80b4786e67f5a5d4341dcd51.tar.xz qemu-079e3e7012a0e3ff80b4786e67f5a5d4341dcd51.zip | |
pcie_host: expose UNMAPPED macro
Make it possible to test unmapped status through QMP.
Reviewed-by: Gerd Hoffmann <kraxel@redhat.com>
Tested-by: Gerd Hoffmann <kraxel@redhat.com>
Reviewed-by: Igor Mammedov <imammedo@redhat.com>
Tested-by: Igor Mammedov <imammedo@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
| -rw-r--r-- | hw/pci/pcie_host.c | 3 | ||||
| -rw-r--r-- | include/hw/pci/pcie_host.h | 3 |
2 files changed, 3 insertions, 3 deletions
diff --git a/hw/pci/pcie_host.c b/hw/pci/pcie_host.c index b70e5adc4b..410ac08cc6 100644 --- a/hw/pci/pcie_host.c +++ b/hw/pci/pcie_host.c @@ -104,9 +104,6 @@ static const MemoryRegionOps pcie_mmcfg_ops = { .endianness = DEVICE_NATIVE_ENDIAN, }; -/* pcie_host::base_addr == PCIE_BASE_ADDR_UNMAPPED when it isn't mapped. */ -#define PCIE_BASE_ADDR_UNMAPPED ((hwaddr)-1ULL) - int pcie_host_init(PCIExpressHost *e) { e->base_addr = PCIE_BASE_ADDR_UNMAPPED; diff --git a/include/hw/pci/pcie_host.h b/include/hw/pci/pcie_host.h index 1228e36cb2..bac3c673d6 100644 --- a/include/hw/pci/pcie_host.h +++ b/include/hw/pci/pcie_host.h @@ -28,6 +28,9 @@ #define PCIE_HOST_BRIDGE(obj) \ OBJECT_CHECK(PCIExpressHost, (obj), TYPE_PCIE_HOST_BRIDGE) +/* pcie_host::base_addr == PCIE_BASE_ADDR_UNMAPPED when it isn't mapped. */ +#define PCIE_BASE_ADDR_UNMAPPED ((hwaddr)-1ULL) + struct PCIExpressHost { PCIHostState pci; |
