x86/MSI: drop bogus NULL check from pci_restore_msi_state()
authorJan Beulich <jbeulich@suse.com>
Thu, 23 Jul 2015 12:03:41 +0000 (14:03 +0200)
committerJan Beulich <jbeulich@suse.com>
Thu, 23 Jul 2015 12:03:41 +0000 (14:03 +0200)
Commit 372900faf8 ("x86/MSI-X: reduce fiddling with control register
during restore") introduced de-references of pdev before it gets
checked against NULL. Instead of deferring the de-references, drop
the pointless check - both call sites do that check already.

Reported-by: Andrew Cooper <andrew.cooper3@citrix.com>
Signed-off-by: Jan Beulich <jbeulich@suse.com>
Reviewed-by: Andrew Cooper <andrew.cooper3@citrix.com>
xen/arch/x86/msi.c

index fa95048a45eadbf092e5b3dd5d28b47ddb01513a..e71e19f71780b84be6639f24175c59cb9d637b03 100644 (file)
@@ -1354,9 +1354,6 @@ int pci_restore_msi_state(struct pci_dev *pdev)
     if ( !use_msi )
         return -EOPNOTSUPP;
 
-    if ( !pdev )
-        return -EINVAL;
-
     ret = xsm_resource_setup_pci(XSM_PRIV,
                                 (pdev->seg << 16) | (pdev->bus << 8) |
                                 pdev->devfn);