Balint Dobszay | 72c3f04 | 2020-11-23 18:23:57 +0100 | [diff] [blame^] | 1 | /* |
2 | * Copyright (c) 2020, Arm Limited and Contributors. All rights reserved. | ||||
3 | * | ||||
4 | * SPDX-License-Identifier: BSD-3-Clause | ||||
5 | */ | ||||
6 | |||||
7 | #ifndef SP_H | ||||
8 | #define SP_H | ||||
9 | |||||
10 | #define OPTEE_SP_UUID \ | ||||
11 | { 0xdc1eef48, 0xb17a, 0x4ccf, \ | ||||
12 | { 0xac, 0x8b, 0xdf, 0xcf, 0xf7, 0x71, 0x1b, 0x14 } } | ||||
13 | |||||
14 | #define SP_UUID_BYTES \ | ||||
15 | { 0xdc, 0x1e, 0xef, 0x48, 0xb1, 0x7a, 0x4c, 0xcf, \ | ||||
16 | 0xac, 0x8b, 0xdf, 0xcf, 0xf7, 0x71, 0x1b, 0x14, } | ||||
17 | |||||
18 | #endif /* SP_H */ |