mirror of
https://github.com/torvalds/linux.git
synced 2024-11-27 22:51:35 +00:00
PCI hotplug: acpiphp: assume device is in state D0 after powering on a slot.
Devices which do not support PCI configuration space based power management may not otherwise be enabled. Signed-off-by: Ian Campbell <ian.campbell@citrix.com> Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
This commit is contained in:
parent
e522a7126c
commit
69643e4829
@ -827,6 +827,13 @@ static int __ref enable_device(struct acpiphp_slot *slot)
|
||||
acpiphp_set_hpp_values(bus);
|
||||
acpiphp_set_acpi_region(slot);
|
||||
pci_enable_bridges(bus);
|
||||
|
||||
list_for_each_entry(dev, &bus->devices, bus_list) {
|
||||
/* Assume that newly added devices are powered on already. */
|
||||
if (!dev->is_added)
|
||||
dev->current_state = PCI_D0;
|
||||
}
|
||||
|
||||
pci_bus_add_devices(bus);
|
||||
|
||||
list_for_each_entry(func, &slot->funcs, sibling) {
|
||||
|
Loading…
Reference in New Issue
Block a user