diff options
author | Sandrine Bailleux <sandrine.bailleux@arm.com> | 2020-02-11 16:15:45 +0000 |
---|---|---|
committer | TrustedFirmware Code Review <review@review.trustedfirmware.org> | 2020-02-11 16:15:45 +0000 |
commit | 21c4f56fa7335fbfd3aeb1175b38b84ef9c798ec (patch) | |
tree | aa6c50e7b657592f39dc2c4286095575eda0a5c6 /include/tools_share | |
parent | 63aa4094fb08d262546afa51d33611a8be0bc4d2 (diff) | |
parent | 97399821256653115c9d6b5d3233934aa7689c0c (diff) | |
download | platform_external_arm-trusted-firmware-21c4f56fa7335fbfd3aeb1175b38b84ef9c798ec.tar.gz platform_external_arm-trusted-firmware-21c4f56fa7335fbfd3aeb1175b38b84ef9c798ec.tar.bz2 platform_external_arm-trusted-firmware-21c4f56fa7335fbfd3aeb1175b38b84ef9c798ec.zip |
Merge changes from topic "lm/fconf" into integration
* changes:
arm-io: Panic in case of io setup failure
MISRA fix: Use boolean essential type
fconf: Add documentation
fconf: Move platform io policies into fconf
fconf: Add mbedtls shared heap as property
fconf: Add TBBR disable_authentication property
fconf: Add dynamic config DTBs info as property
fconf: Populate properties from dtb during bl2 setup
fconf: Load config dtb from bl1
fconf: initial commit
Diffstat (limited to 'include/tools_share')
-rw-r--r-- | include/tools_share/uuid.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/include/tools_share/uuid.h b/include/tools_share/uuid.h index 7d0043206..36be9ed37 100644 --- a/include/tools_share/uuid.h +++ b/include/tools_share/uuid.h @@ -27,7 +27,7 @@ */ /* - * Portions copyright (c) 2014, ARM Limited and Contributors. + * Portions copyright (c) 2014-2020, ARM Limited and Contributors. * All rights reserved. */ @@ -56,6 +56,11 @@ struct uuid { uint8_t node[_UUID_NODE_LEN]; }; +union uuid_helper_t { + struct uuid uuid_struct; + uint32_t word[4]; +}; + /* XXX namespace pollution? */ typedef struct uuid uuid_t; |