summaryrefslogtreecommitdiff
path: root/hw/pcie_host.h
diff options
context:
space:
mode:
authorIsaku Yamahata <yamahata@valinux.co.jp>2009-11-12 14:58:41 +0900
committerMichael S. Tsirkin <mst@redhat.com>2009-12-01 17:52:08 +0200
commitfb47a2e983f3e0b4c9d36fe0d31ed8a1224e767b (patch)
tree125bbb7c1c28c18e0708a75d90ede631345503ae /hw/pcie_host.h
parent3c217c14f58c0146a0dbca01716cd850a63a0e81 (diff)
downloadqemu-fb47a2e983f3e0b4c9d36fe0d31ed8a1224e767b.tar.gz
pci: move typedef, PCIHostState, PCIExpressHost to qemu-common.h.
This patch moves two typedefs, PCIHostState and PCIExpressHost to qemu-common.h for consistency as PCIBus and PCIDevice are typedefed in qemu-common.h. Signed-off-by: Isaku Yamahata <yamahata@valinux.co.jp> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'hw/pcie_host.h')
-rw-r--r--hw/pcie_host.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/pcie_host.h b/hw/pcie_host.h
index a7771c912a..7754ac94e8 100644
--- a/hw/pcie_host.h
+++ b/hw/pcie_host.h
@@ -24,7 +24,7 @@
#include "pci_host.h"
-typedef struct {
+struct PCIExpressHost {
PCIHostState pci;
/* express part */
@@ -37,7 +37,7 @@ typedef struct {
/* result of cpu_register_io_memory() to map MMCONFIG area */
int mmio_index;
-} PCIExpressHost;
+};
int pcie_host_init(PCIExpressHost *e);
void pcie_host_mmcfg_unmap(PCIExpressHost *e);