summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMao Zhongyi2017-06-27 08:16:47 +0200
committerMichael S. Tsirkin2017-07-03 21:29:48 +0200
commit673b0d7ccc34e9617d99ed4c29caa964f19a4c5a (patch)
tree49a8653e0702315258e4667fd6623a83f5cb7fa2
parentintel_iommu: relax iq tail check on VTD_GCMD_QIE enable (diff)
downloadqemu-673b0d7ccc34e9617d99ed4c29caa964f19a4c5a.tar.gz
qemu-673b0d7ccc34e9617d99ed4c29caa964f19a4c5a.tar.xz
qemu-673b0d7ccc34e9617d99ed4c29caa964f19a4c5a.zip
pci: Clean up error checking in pci_add_capability()
On success, pci_add_capability2() returns a positive value. On failure, it sets an error and return a negative value. pci_add_capability() laboriously checks this behavior. No other caller does. Drop the checks from pci_add_capability(). Cc: mst@redhat.com Cc: marcel@redhat.com Signed-off-by: Mao Zhongyi <maozy.fnst@cn.fujitsu.com> Reviewed-by: Marcel Apfelbaum <marcel@redhat.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
-rw-r--r--hw/pci/pci.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/hw/pci/pci.c b/hw/pci/pci.c
index b7fee4bdf2..3c24888870 100644
--- a/hw/pci/pci.c
+++ b/hw/pci/pci.c
@@ -2270,12 +2270,8 @@ int pci_add_capability(PCIDevice *pdev, uint8_t cap_id,
Error *local_err = NULL;
ret = pci_add_capability2(pdev, cap_id, offset, size, &local_err);
- if (local_err) {
- assert(ret < 0);
+ if (ret < 0) {
error_report_err(local_err);
- } else {
- /* success implies a positive offset in config space */
- assert(ret > 0);
}
return ret;
}