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/drivers | |
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/drivers')
-rw-r--r-- | include/drivers/io/io_storage.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/drivers/io/io_storage.h b/include/drivers/io/io_storage.h index 0e6ffd619..a301ad563 100644 --- a/include/drivers/io/io_storage.h +++ b/include/drivers/io/io_storage.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2014-2019, ARM Limited and Contributors. All rights reserved. + * Copyright (c) 2014-2020, ARM Limited and Contributors. All rights reserved. * * SPDX-License-Identifier: BSD-3-Clause */ @@ -53,7 +53,7 @@ typedef struct io_file_spec { /* UUID specification - used to refer to data accessed using UUIDs (i.e. FIP * images) */ typedef struct io_uuid_spec { - const uuid_t uuid; + uuid_t uuid; } io_uuid_spec_t; /* Block specification - used to refer to data on a device supporting |