diff options
author | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2014-11-27 16:38:23 -0500 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2014-12-03 18:50:19 -0500 |
commit | 5de21bb998b8e816e6a1df1f2c04d95fb6e27a5d (patch) | |
tree | 836c77264fd2f659d6c32572b8c5ae4629152c84 /drivers/acpi/acpi_lpss.c | |
parent | 4bea2b4cd93600e4c3aed6059a095209d3fc91b9 (diff) |
ACPI / PM: Drop CONFIG_PM_RUNTIME from the ACPI core
After commit b2b49ccbdd54 (PM: Kconfig: Set PM_RUNTIME if PM_SLEEP is
selected) PM_RUNTIME is always set if PM is set, so quite a few
depend on CONFIG_PM.
Replace CONFIG_PM_RUNTIME with CONFIG_PM in the ACPI core code.
Reviewed-by: Ulf Hansson <ulf.hansson@linaro.org>
Acked-by: Kevin Hilman <khilman@linaro.org>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'drivers/acpi/acpi_lpss.c')
-rw-r--r-- | drivers/acpi/acpi_lpss.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/acpi/acpi_lpss.c b/drivers/acpi/acpi_lpss.c index d1dd0ada14b7..4f3febf8a589 100644 --- a/drivers/acpi/acpi_lpss.c +++ b/drivers/acpi/acpi_lpss.c | |||
@@ -588,7 +588,6 @@ static int acpi_lpss_resume_early(struct device *dev) | |||
588 | } | 588 | } |
589 | #endif /* CONFIG_PM_SLEEP */ | 589 | #endif /* CONFIG_PM_SLEEP */ |
590 | 590 | ||
591 | #ifdef CONFIG_PM_RUNTIME | ||
592 | static int acpi_lpss_runtime_suspend(struct device *dev) | 591 | static int acpi_lpss_runtime_suspend(struct device *dev) |
593 | { | 592 | { |
594 | struct lpss_private_data *pdata = acpi_driver_data(ACPI_COMPANION(dev)); | 593 | struct lpss_private_data *pdata = acpi_driver_data(ACPI_COMPANION(dev)); |
@@ -631,11 +630,11 @@ static int acpi_lpss_runtime_resume(struct device *dev) | |||
631 | 630 | ||
632 | return pm_generic_runtime_resume(dev); | 631 | return pm_generic_runtime_resume(dev); |
633 | } | 632 | } |
634 | #endif /* CONFIG_PM_RUNTIME */ | ||
635 | #endif /* CONFIG_PM */ | 633 | #endif /* CONFIG_PM */ |
636 | 634 | ||
637 | static struct dev_pm_domain acpi_lpss_pm_domain = { | 635 | static struct dev_pm_domain acpi_lpss_pm_domain = { |
638 | .ops = { | 636 | .ops = { |
637 | #ifdef CONFIG_PM | ||
639 | #ifdef CONFIG_PM_SLEEP | 638 | #ifdef CONFIG_PM_SLEEP |
640 | .prepare = acpi_subsys_prepare, | 639 | .prepare = acpi_subsys_prepare, |
641 | .complete = acpi_subsys_complete, | 640 | .complete = acpi_subsys_complete, |
@@ -647,7 +646,6 @@ static struct dev_pm_domain acpi_lpss_pm_domain = { | |||
647 | .poweroff_late = acpi_lpss_suspend_late, | 646 | .poweroff_late = acpi_lpss_suspend_late, |
648 | .restore_early = acpi_lpss_resume_early, | 647 | .restore_early = acpi_lpss_resume_early, |
649 | #endif | 648 | #endif |
650 | #ifdef CONFIG_PM_RUNTIME | ||
651 | .runtime_suspend = acpi_lpss_runtime_suspend, | 649 | .runtime_suspend = acpi_lpss_runtime_suspend, |
652 | .runtime_resume = acpi_lpss_runtime_resume, | 650 | .runtime_resume = acpi_lpss_runtime_resume, |
653 | #endif | 651 | #endif |