1 /*
2  * Copyright (C) 2023 Intel Corporation.
3  *-
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #ifndef COMMON_THERMAL_H
8 #define COMMON_THERMAL_H
9 
10 /**
11  * @brief Initialize thermal.
12  *
13  * @return None
14  */
15 void thermal_init(void);
16 
17 #endif /* COMMON_THERMAL_H */
18