diff options
author | Isaku Yamahata <yamahata@valinux.co.jp> | 2009-11-12 14:58:30 +0900 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2009-12-01 17:51:15 +0200 |
commit | b6243d991a4d073b2c8c16737fec9ee74274bfeb (patch) | |
tree | 691078fec2aa9b81f7d2842f425234cba8ca07d1 /hw/pci_host.h | |
parent | f88d7509b444ffa289e5054b34bc6f4800f6b76d (diff) |
pci: move pci_data_{read, write}() declaration from pci.h to pci_host.h
Now pci host stuff has been moved from pci.[hc] to pci_host.[hc]
so the declaration of pci_data_{read, write}() should be in
pci_host.h
This patch moves them from pci.h to pci_host.h for consistency.
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 | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/hw/pci_host.h b/hw/pci_host.h index e5e877f4cd..7cfa693563 100644 --- a/hw/pci_host.h +++ b/hw/pci_host.h @@ -36,6 +36,9 @@ typedef struct { 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); + /* for mmio */ int pci_host_config_register_io_memory(PCIHostState *s); int pci_host_config_register_io_memory_noswap(PCIHostState *s); |