| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
 | | /* |  |  * Copyright 2017, Rockchip Electronics Co., Ltd |  |  * hisping lin, <hisping.lin@rock-chips.com> |  |  * |  |  * SPDX-License-Identifier:    GPL-2.0+ |  |  */ |  | #ifndef __OPTEE_CLIENT_IMAGE_GUID_H__ |  | #define __OPTEE_CLIENT_IMAGE_GUID_H__ |  |   |  | #include <optee_include/tee_base_types.h> |  |   |  | #define OPTEE_CLIENT_IMAGE_GUID \ |  | { \ |  |     0xee3206cb, 0x950a, 0x49eb, \ |  |     { 0xbd, 0xd7, 0xc1, 0x95, 0xcb, 0x9b, 0x2e, 0xbf } \ |  | } |  |   |  | #endif | 
 |