Branch data Line data Source code
1 : : /* SPDX-License-Identifier: GPL-2.0 */ 2 : : 3 : : extern void acpi_enable_wakeup_devices(u8 sleep_state); 4 : : extern void acpi_disable_wakeup_devices(u8 sleep_state); 5 : : 6 : : extern struct list_head acpi_wakeup_device_list; 7 : : extern struct mutex acpi_device_lock; 8 : : 9 : : extern void acpi_resume_power_resources(void); 10 : : extern void acpi_turn_off_unused_power_resources(void); 11 : : 12 : 0 : static inline acpi_status acpi_set_waking_vector(u32 wakeup_address) 13 : : { 14 : 0 : return acpi_set_firmware_waking_vector( 15 : : (acpi_physical_address)wakeup_address, 0); 16 : : }