diff options
author | Isaku Yamahata <yamahata@valinux.co.jp> | 2009-10-30 21:21:07 +0900 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-11-09 08:43:08 -0600 |
commit | a455783bb6ecede44450f54980c42951fd06b7fb (patch) | |
tree | 7c7b95b96400315efc8fe46a3455cbae9c045fbb /hw/pci_host.h | |
parent | 4f5e19e6c570459cd524b29b24374f03860f5149 (diff) |
pci_host: consolidate pci config address access.
consolidate pci_config address access into pci_host.c
Signed-off-by: Isaku Yamahata <yamahata@valinux.co.jp>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/pci_host.h')
-rw-r--r-- | hw/pci_host.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/hw/pci_host.h b/hw/pci_host.h index 92a35f9b05..e5e877f4cd 100644 --- a/hw/pci_host.h +++ b/hw/pci_host.h @@ -37,9 +37,12 @@ typedef struct { } PCIHostState; /* for mmio */ +int pci_host_config_register_io_memory(PCIHostState *s); +int pci_host_config_register_io_memory_noswap(PCIHostState *s); int pci_host_data_register_io_memory(PCIHostState *s); /* for ioio */ +void pci_host_config_register_ioport(pio_addr_t ioport, PCIHostState *s); void pci_host_data_register_ioport(pio_addr_t ioport, PCIHostState *s); #endif /* PCI_HOST_H */ |