From ce195fb532ae6736318f4d05b0a72f055ae2ea60 Mon Sep 17 00:00:00 2001 From: Isaku Yamahata Date: Fri, 30 Oct 2009 21:21:16 +0900 Subject: 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 Acked-by: Michael S. Tsirkin Signed-off-by: Anthony Liguori --- hw/pci_host.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'hw/pci_host.c') diff --git a/hw/pci_host.c b/hw/pci_host.c index 351ade4..f4518dc 100644 --- a/hw/pci_host.c +++ b/hw/pci_host.c @@ -52,9 +52,8 @@ static inline uint32_t pci_addr_to_config(uint32_t addr) return addr & (PCI_CONFIG_SPACE_SIZE - 1); } -void pci_data_write(void *opaque, uint32_t addr, uint32_t val, int len) +void pci_data_write(PCIBus *s, uint32_t addr, uint32_t val, int len) { - PCIBus *s = opaque; PCIDevice *pci_dev = pci_addr_to_dev(s, addr); uint32_t config_addr = pci_addr_to_config(addr); @@ -66,9 +65,8 @@ void pci_data_write(void *opaque, uint32_t addr, uint32_t val, int len) pci_dev->config_write(pci_dev, config_addr, val, len); } -uint32_t pci_data_read(void *opaque, uint32_t addr, int len) +uint32_t pci_data_read(PCIBus *s, uint32_t addr, int len) { - PCIBus *s = opaque; PCIDevice *pci_dev = pci_addr_to_dev(s, addr); uint32_t config_addr = pci_addr_to_config(addr); uint32_t val; -- cgit v1.1