diff options
| author | Isaku Yamahata <yamahata@valinux.co.jp> | 2009-10-30 21:21:16 +0900 |
|---|---|---|
| committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-11-09 08:43:09 -0600 |
| commit | ce195fb532ae6736318f4d05b0a72f055ae2ea60 (patch) | |
| tree | 769921c52f8f97746838cea15d86f7acbdda5c6a /hw/pci.h | |
| parent | 766347cc8cfca40a4e9585e6a7a83c2d603609c7 (diff) | |
| download | focaccia-qemu-ce195fb532ae6736318f4d05b0a72f055ae2ea60.tar.gz focaccia-qemu-ce195fb532ae6736318f4d05b0a72f055ae2ea60.zip | |
pci_host: change the signature of pci_data_{read, write}.
change the first argument, void *opaque to PCIBus *s
of the pci_data_{read, write}.
They aren't used as direct callback so the argument type
don't have to be void*. So change it to the right type.
Signed-off-by: Isaku Yamahata <yamahata@valinux.co.jp>
Acked-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/pci.h')
| -rw-r--r-- | hw/pci.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/pci.h b/hw/pci.h index b16f8f8985..4f4266d6ce 100644 --- a/hw/pci.h +++ b/hw/pci.h @@ -265,8 +265,8 @@ PCIDevice *pci_nic_init(NICInfo *nd, const char *default_model, const char *default_devaddr); PCIDevice *pci_nic_init_nofail(NICInfo *nd, const char *default_model, const char *default_devaddr); -void pci_data_write(void *opaque, uint32_t addr, uint32_t val, int len); -uint32_t pci_data_read(void *opaque, uint32_t addr, int len); +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); int pci_bus_num(PCIBus *s); void pci_for_each_device(PCIBus *bus, int bus_num, void (*fn)(PCIBus *bus, PCIDevice *d)); PCIBus *pci_find_host_bus(int domain); |