1 /*
2  * Copyright (c) 2024 Espressif Systems (Shanghai) Co., Ltd.
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #include <zephyr/drivers/clock_control.h>
8 
9 struct device_subsys_data {
10 	clock_control_subsys_t subsys;
11 	uint32_t startup_us;
12 };
13 
14 struct device_data {
15 	const struct device *dev;
16 	const struct device_subsys_data *subsys_data;
17 	uint32_t subsys_cnt;
18 };
19