xref: /optee_os/core/include/drivers/stm32_serc.h (revision c3deb3d6f3b13d0e17fc9efe5880aec039e47594)
1 /* SPDX-License-Identifier: BSD-2-Clause */
2 /*
3  * Copyright (c) 2022-2025, STMicroelectronics
4  */
5 #ifndef __DRIVERS_STM32_SERC_H__
6 #define __DRIVERS_STM32_SERC_H__
7 
8 /* Helper to print and handle SERC ILACs */
9 #ifdef CFG_STM32_SERC
10 void stm32_serc_handle_ilac(void);
11 #else /* CFG_STM32_SERC */
12 static inline void stm32_serc_handle_ilac(void) { };
13 #endif /* CFG_STM32_SERC */
14 
15 #endif /* __DRIVERS_STM32_SERC_H__ */
16