1 /*
2  * Copyright (c) 2024 Intel Corporation.
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #ifndef TESTS_SUBSYS_PM_POWER_STATES_API_TEST_DRIVER_H_
8 #define TESTS_SUBSYS_PM_POWER_STATES_API_TEST_DRIVER_H_
9 
10 #include <zephyr/device.h>
11 
12 /**
13  * @brief Async operation.
14  *
15  * The device simulates an async operation and shall
16  * not be suspended while is in progress. This included
17  * the SoC not transition to certain power states.
18  *
19  * @param dev Device instance.
20  */
21 void test_driver_async_operation(const struct device *dev);
22 
23 
24 #endif /* TESTS_SUBSYS_PM_POWER_STATES_API_TEST_DRIVER_H_ */
25