summaryrefslogtreecommitdiff
path: root/hw/xen
diff options
context:
space:
mode:
authorBruce Rogers <brogers@suse.com>2016-07-27 09:30:48 -0600
committerStefano Stabellini <sstabellini@kernel.org>2016-08-04 10:42:48 -0700
commit0968c91ce00f42487fb11de5da38e53b5dc6bc7f (patch)
tree049d7cbcd122eca82d6c21685bc8829d1c8c4fec /hw/xen
parent09704e6ded83fa0bec14baf32f800f6512156ca0 (diff)
downloadqemu-0968c91ce00f42487fb11de5da38e53b5dc6bc7f.tar.gz
Xen PCI passthrough: fix passthrough failure when no interrupt pin
Commit 5a11d0f7 mistakenly converted a log message into an error condition when no pin interrupt is found for the pci device being passed through. Revert that part of the commit. Signed-off-by: Bruce Rogers <brogers@suse.com> Signed-off-by: Stefano Stabellini <sstabellini@kernel.org> Acked-by: Anthony PERARD <anthony.perard@citrix.com>
Diffstat (limited to 'hw/xen')
-rw-r--r--hw/xen/xen_pt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/xen/xen_pt.c b/hw/xen/xen_pt.c
index f593b046e5..b6d71bb52a 100644
--- a/hw/xen/xen_pt.c
+++ b/hw/xen/xen_pt.c
@@ -842,7 +842,7 @@ static void xen_pt_realize(PCIDevice *d, Error **errp)
goto err_out;
}
if (!scratch) {
- error_setg(errp, "no pin interrupt");
+ XEN_PT_LOG(d, "no pin interrupt\n");
goto out;
}