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/pci_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/pci_host.h')
-rw-r--r-- | hw/pci_host.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/pci_host.h b/hw/pci_host.h index cf3a3393d9..a006687f8b 100644 --- a/hw/pci_host.h +++ b/hw/pci_host.h @@ -30,11 +30,11 @@ #include "sysbus.h" -typedef struct { +struct PCIHostState { SysBusDevice busdev; uint32_t config_reg; PCIBus *bus; -} PCIHostState; +}; void pci_data_write(PCIBus *s, uint32_t addr, uint32_t val, int len); uint32_t pci_data_read(PCIBus *s, uint32_t addr, int len); |