2024-01-17 07:17:02 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2024 Intel Corporation.
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef ZEPHYR_SUBSYS_PM_DEVICE_SYSTEM_MANAGED_H_
|
|
|
|
#define ZEPHYR_SUBSYS_PM_DEVICE_SYSTEM_MANAGED_H_
|
|
|
|
|
|
|
|
#ifdef CONFIG_PM_DEVICE_SYSTEM_MANAGED
|
|
|
|
|
|
|
|
bool pm_suspend_devices(void);
|
|
|
|
void pm_resume_devices(void);
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
2024-06-15 05:10:33 +08:00
|
|
|
bool pm_suspend_devices(void) { return true; }
|
|
|
|
void pm_resume_devices(void) {}
|
2024-01-17 07:17:02 +08:00
|
|
|
|
|
|
|
#endif /* CONFIG_PM_DEVICE_SYSTEM_MANAGED */
|
|
|
|
|
|
|
|
#endif /* ZEPHYR_SUBSYS_PM_DEVICE_SYSTEM_MANAGED_H_ */
|