summaryrefslogtreecommitdiffstats
path: root/drivers/acpi
diff options
context:
space:
mode:
authorBjorn Helgaas <bhelgaas@google.com>2012-11-13 22:34:06 +0100
committerBjorn Helgaas <bhelgaas@google.com>2012-11-13 22:34:06 +0100
commit7db78a9c864d1baf916d849febef31e274cfcb1f (patch)
treeebbe90db1637aec1f1027dfa9436b0f5ede9453e /drivers/acpi
parentMerge branch 'pci/don-sriov' into next (diff)
parentPCI/ACPI: Notify PCI devices when their power resource is turned on (diff)
downloadlinux-7db78a9c864d1baf916d849febef31e274cfcb1f.tar.xz
linux-7db78a9c864d1baf916d849febef31e274cfcb1f.zip
Merge branch 'pci/misc' into next
* pci/misc: PCI/ACPI: Notify PCI devices when their power resource is turned on PCI: Add GPL license for drivers/pci/ioapic module PCI: Fix bit definitions of PCI_EXP_LNKCAP2 register
Diffstat (limited to 'drivers/acpi')
-rw-r--r--drivers/acpi/pci_bind.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/acpi/pci_bind.c b/drivers/acpi/pci_bind.c
index 911144b22c89..a1dee29beed3 100644
--- a/drivers/acpi/pci_bind.c
+++ b/drivers/acpi/pci_bind.c
@@ -45,6 +45,7 @@ static int acpi_pci_unbind(struct acpi_device *device)
device_set_run_wake(&dev->dev, false);
pci_acpi_remove_pm_notifier(device);
+ acpi_power_resource_unregister_device(&dev->dev, device->handle);
if (!dev->subordinate)
goto out;
@@ -71,6 +72,7 @@ static int acpi_pci_bind(struct acpi_device *device)
return 0;
pci_acpi_add_pm_notifier(device, dev);
+ acpi_power_resource_register_device(&dev->dev, device->handle);
if (device->wakeup.flags.run_wake)
device_set_run_wake(&dev->dev, true);