aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/acpi/acpi_bus.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/include/acpi/acpi_bus.h b/include/acpi/acpi_bus.h
index a635942bcd51..35812b6e0427 100644
--- a/include/acpi/acpi_bus.h
+++ b/include/acpi/acpi_bus.h
@@ -339,6 +339,7 @@ acpi_status acpi_bus_get_status_handle(acpi_handle handle,
339 unsigned long long *sta); 339 unsigned long long *sta);
340int acpi_bus_get_status(struct acpi_device *device); 340int acpi_bus_get_status(struct acpi_device *device);
341int acpi_bus_set_power(acpi_handle handle, int state); 341int acpi_bus_set_power(acpi_handle handle, int state);
342int acpi_device_set_power(struct acpi_device *device, int state);
342int acpi_bus_update_power(acpi_handle handle, int *state_p); 343int acpi_bus_update_power(acpi_handle handle, int *state_p);
343bool acpi_bus_power_manageable(acpi_handle handle); 344bool acpi_bus_power_manageable(acpi_handle handle);
344bool acpi_bus_can_wakeup(acpi_handle handle); 345bool acpi_bus_can_wakeup(acpi_handle handle);
@@ -483,6 +484,16 @@ static inline int acpi_pm_device_sleep_wake(struct device *dev, bool enable)
483} 484}
484#endif 485#endif
485 486
487static inline bool acpi_device_power_manageable(struct acpi_device *adev)
488{
489 return adev->flags.power_manageable;
490}
491
492static inline bool acpi_device_can_wakeup(struct acpi_device *adev)
493{
494 return adev->wakeup.flags.valid;
495}
496
486#else /* CONFIG_ACPI */ 497#else /* CONFIG_ACPI */
487 498
488static inline int register_acpi_bus_type(void *bus) { return 0; } 499static inline int register_acpi_bus_type(void *bus) { return 0; }