mirror of
https://github.com/torvalds/linux.git
synced 2024-10-31 09:11:49 +00:00
ACPI / hotplug / PCI: Fix error code path in acpiphp_enumerate_slots()
One of the error code paths in acpiphp_enumerate_slots() is missing a pci_dev_put(bridge->pci_dev) call, so add it. Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com> Acked-by: Bjorn Helgaas <bhelgaas@google.com>
This commit is contained in:
parent
d0e639c9e0
commit
5d4494573c
@ -1002,6 +1002,7 @@ void acpiphp_enumerate_slots(struct pci_bus *bus)
|
||||
if (WARN_ON(!context)) {
|
||||
mutex_unlock(&acpiphp_context_lock);
|
||||
put_device(&bus->dev);
|
||||
pci_dev_put(bridge->pci_dev);
|
||||
kfree(bridge);
|
||||
return;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user