xref: /optee_os/core/include/drivers/cbmem_console.h (revision 5d5d7d0b1c038a6836be9f0b38585f5aa6a4dd01)
1 /* SPDX-License-Identifier: BSD-2-Clause */
2 /*
3  * Copyright (c) 2023, Google Limited
4  */
5 #ifndef __DRIVERS_CBMEM_CONSOLE_H
6 #define __DRIVERS_CBMEM_CONSOLE_H
7 
8 #include <stdbool.h>
9 
10 bool cbmem_console_init_from_dt(void *fdt);
11 
12 #endif /* __DRIVERS_CBMEM_CONSOLE_H */
13 
14