1 /* 2 * Copyright 2017, Rockchip Electronics Co., Ltd 3 * hisping lin, <hisping.lin@rock-chips.com> 4 * 5 * SPDX-License-Identifier: GPL-2.0+ 6 */ 7 #ifndef _OPTEE_CLIENT_MEM_H_ 8 #define _OPTEE_CLIENT_MEM_H_ 9 10 #include <linux/types.h> 11 12 int OpteeClientMemInit(void); 13 14 void *OpteeClientMemAlloc(uint32_t length); 15 16 void OpteeClientMemFree(void *mem); 17 18 #endif /*_OPTEE_CLIENT_MEM_H_*/ 19