From: Alex Williamson Date: Thu, 14 Jun 2012 04:52:06 +0000 (-0600) Subject: msix: fix PCIDevice naming inconsistency X-Git-Tag: TizenStudio_2.0_p2.3.2~208^2~3836^2^2~13 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=118f2c2b48b9758a3a2967868b337eb388d1531b;p=sdk%2Femulator%2Fqemu.git msix: fix PCIDevice naming inconsistency msix.h calls the PCIDevice * parameter "dev" almost everywhere except the msix_write_config declaration. Fix the inconsistency. Signed-off-by: Alex Williamson Signed-off-by: Michael S. Tsirkin --- diff --git a/hw/msix.h b/hw/msix.h index e5a488d..4a17f94 100644 --- a/hw/msix.h +++ b/hw/msix.h @@ -8,8 +8,7 @@ int msix_init(PCIDevice *pdev, unsigned short nentries, MemoryRegion *bar, unsigned bar_nr, unsigned bar_size); -void msix_write_config(PCIDevice *pci_dev, uint32_t address, - uint32_t val, int len); +void msix_write_config(PCIDevice *dev, uint32_t address, uint32_t val, int len); int msix_uninit(PCIDevice *d, MemoryRegion *bar);