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 /include/acpi | |
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 'include/acpi')
-rw-r--r-- | include/acpi/acpi_bus.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/include/acpi/acpi_bus.h b/include/acpi/acpi_bus.h index f34a0835aa4f..78f7521417e3 100644 --- a/include/acpi/acpi_bus.h +++ b/include/acpi/acpi_bus.h | |||
@@ -516,6 +516,7 @@ acpi_status acpi_add_pm_notifier(struct acpi_device *adev, struct device *dev, | |||
516 | void (*work_func)(struct work_struct *work)); | 516 | void (*work_func)(struct work_struct *work)); |
517 | acpi_status acpi_remove_pm_notifier(struct acpi_device *adev); | 517 | acpi_status acpi_remove_pm_notifier(struct acpi_device *adev); |
518 | int acpi_pm_device_sleep_state(struct device *, int *, int); | 518 | int acpi_pm_device_sleep_state(struct device *, int *, int); |
519 | int acpi_pm_device_run_wake(struct device *, bool); | ||
519 | #else | 520 | #else |
520 | static inline acpi_status acpi_add_pm_notifier(struct acpi_device *adev, | 521 | static inline acpi_status acpi_add_pm_notifier(struct acpi_device *adev, |
521 | struct device *dev, | 522 | struct device *dev, |
@@ -535,11 +536,6 @@ static inline int acpi_pm_device_sleep_state(struct device *d, int *p, int m) | |||
535 | return (m >= ACPI_STATE_D0 && m <= ACPI_STATE_D3_COLD) ? | 536 | return (m >= ACPI_STATE_D0 && m <= ACPI_STATE_D3_COLD) ? |
536 | m : ACPI_STATE_D0; | 537 | m : ACPI_STATE_D0; |
537 | } | 538 | } |
538 | #endif | ||
539 | |||
540 | #ifdef CONFIG_PM_RUNTIME | ||
541 | int acpi_pm_device_run_wake(struct device *, bool); | ||
542 | #else | ||
543 | static inline int acpi_pm_device_run_wake(struct device *dev, bool enable) | 539 | static inline int acpi_pm_device_run_wake(struct device *dev, bool enable) |
544 | { | 540 | { |
545 | return -ENODEV; | 541 | return -ENODEV; |