From: Peter Crosthwaite <peter.crosthwa...@xilinx.com> Signed-off-by: Peter Crosthwaite <peter.crosthwa...@xilinx.com> ---
hw/misc/vfio.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hw/misc/vfio.c b/hw/misc/vfio.c index 52fb036..8e3524f 100644 --- a/hw/misc/vfio.c +++ b/hw/misc/vfio.c @@ -3074,7 +3074,7 @@ static int vfio_initfn(PCIDevice *pdev) } } - add_boot_device_path(vdev->bootindex, &pdev->qdev, NULL); + add_boot_device_path(vdev->bootindex, DEVICE(pdev), NULL); return 0; @@ -3108,7 +3108,7 @@ static void vfio_exitfn(PCIDevice *pdev) static void vfio_pci_reset(DeviceState *dev) { - PCIDevice *pdev = DO_UPCAST(PCIDevice, qdev, dev); + PCIDevice *pdev = PCI_DEVICE(dev); VFIODevice *vdev = DO_UPCAST(VFIODevice, pdev, pdev); uint16_t cmd; -- 1.8.3.rc1.44.gb387c77.dirty