Commit 0968c91c authored by Bruce Rogers's avatar Bruce Rogers Committed by Stefano Stabellini
Browse files

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: default avatarBruce Rogers <brogers@suse.com>
Signed-off-by: default avatarStefano Stabellini <sstabellini@kernel.org>
Acked-by: default avatarAnthony PERARD <anthony.perard@citrix.com>
parent 09704e6d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
    }