xref: /optee_os/core/include/drivers/ffa_console.h (revision 9f34db38245c9b3a4e6e7e63eb78a75e23ab2da3)
1 /* SPDX-License-Identifier: BSD-2-Clause */
2 /*
3  * Copyright (c) 2024, NVIDIA CORPORATION
4  */
5 
6 #ifndef FFA_CONSOLE_H
7 #define FFA_CONSOLE_H
8 
9 #ifdef CFG_FFA_CONSOLE
10 /*
11  * Initialize console which uses FFA_CONSOLE_LOG of hafnium.
12  */
13 void ffa_console_init(void);
14 #else
15 static inline void ffa_console_init(void)
16 {
17 }
18 #endif
19 
20 #endif /* FFA_CONSOLE_H */
21