diff options
author | Isaku Yamahata <yamahata@valinux.co.jp> | 2009-11-12 14:58:41 +0900 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2009-12-01 17:52:08 +0200 |
commit | fb47a2e983f3e0b4c9d36fe0d31ed8a1224e767b (patch) | |
tree | 125bbb7c1c28c18e0708a75d90ede631345503ae /hw/pcie_host.h | |
parent | 3c217c14f58c0146a0dbca01716cd850a63a0e81 (diff) |
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.h | 4 |
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); |