From: Jan Kiszka <jan.kiszka@xxxxxxxxxxx> ret is only set to 0 and then left untouched. Signed-off-by: Jan Kiszka <jan.kiszka@xxxxxxxxxxx> --- hw/device-assignment.c | 6 ------ 1 files changed, 0 insertions(+), 6 deletions(-) diff --git a/hw/device-assignment.c b/hw/device-assignment.c index 50a7485..8a7cfcf 100644 --- a/hw/device-assignment.c +++ b/hw/device-assignment.c @@ -273,7 +273,6 @@ static void assigned_dev_iomem_map(PCIDevice *pci_dev, int region_num, AssignedDevice *r_dev = DO_UPCAST(AssignedDevice, dev, pci_dev); AssignedDevRegion *region = &r_dev->v_addrs[region_num]; PCIRegion *real_region = &r_dev->real_device.regions[region_num]; - int ret = 0; DEBUG("e_phys=%08" FMT_PCIBUS " r_virt=%p type=%d len=%08" FMT_PCIBUS " region_num=%d \n", e_phys, region->u.r_virtbase, type, e_size, region_num); @@ -294,11 +293,6 @@ static void assigned_dev_iomem_map(PCIDevice *pci_dev, int region_num, TARGET_PAGE_SIZE, r_dev->mmio_index); } } - - if (ret != 0) { - fprintf(stderr, "%s: Error: create new mapping failed\n", __func__); - exit(1); - } } static void assigned_dev_ioport_map(PCIDevice *pci_dev, int region_num, -- 1.7.1 -- To unsubscribe from this list: send the line "unsubscribe kvm" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html