Commit dff3aef7 authored by Myron Stowe's avatar Myron Stowe Committed by Bjorn Helgaas

PCI: release temporary reference in __nv_msi_ht_cap_quirk()

__nv_msi_ht_cap_quirk() acquires a temporary reference via
'pci_get_bus_and_slot()' that is never released.

This patch releases the temporary reference.
Signed-off-by: default avatarMyron Stowe <myron.stowe@redhat.com>
Signed-off-by: default avatarBjorn Helgaas <bhelgaas@google.com>
parent 2729d5b1
...@@ -2541,15 +2541,18 @@ static void __devinit __nv_msi_ht_cap_quirk(struct pci_dev *dev, int all) ...@@ -2541,15 +2541,18 @@ static void __devinit __nv_msi_ht_cap_quirk(struct pci_dev *dev, int all)
else else
nv_ht_enable_msi_mapping(dev); nv_ht_enable_msi_mapping(dev);
} }
return; goto out;
} }
/* HT MSI is not enabled */ /* HT MSI is not enabled */
if (found == 1) if (found == 1)
return; goto out;
/* Host bridge is not to HT, disable HT MSI mapping on this device */ /* Host bridge is not to HT, disable HT MSI mapping on this device */
ht_disable_msi_mapping(dev); ht_disable_msi_mapping(dev);
out:
pci_dev_put(host_bridge);
} }
static void __devinit nv_msi_ht_cap_quirk_all(struct pci_dev *dev) static void __devinit nv_msi_ht_cap_quirk_all(struct pci_dev *dev)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment