1 /* SPDX-License-Identifier: BSD-2-Clause */
2 /*
3  * Copyright 2018-2019 NXP
4  *
5  * Brief   CAAM Clock functions header.
6  */
7 #ifndef __CAAM_HAL_CLK_H__
8 #define __CAAM_HAL_CLK_H__
9 
10 #include <types_ext.h>
11 
12 /*
13  * Enable/disable the CAAM clocks
14  *
15  * @enable  Enable the clock if true
16  */
17 void caam_hal_clk_enable(bool enable);
18 
19 #endif /* __CAAM_HAL_CLK_H__ */
20