xref: /optee_os/core/include/drivers/stm32_serc.h (revision fc6415c4db135acca6c1a79c490f0a1da89a62ec)
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