aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorMark Dykes <mardyk01@review.trustedfirmware.org>2020-03-10 18:25:02 +0000
committerTrustedFirmware Code Review <review@review.trustedfirmware.org>2020-03-10 18:25:02 +0000
commit46b3003b052cd56e68fb68d38e3697f42ade2170 (patch)
treee760140cf2ec761225f24ba60980776ded15165e /drivers
parente31026776b0c5676f7d4a4c9c9fdf7ee61d9d6fc (diff)
parent93ee27998020f3580ba5da075d6c9b1e9ab14263 (diff)
downloadplatform_external_arm-trusted-firmware-46b3003b052cd56e68fb68d38e3697f42ade2170.tar.gz
platform_external_arm-trusted-firmware-46b3003b052cd56e68fb68d38e3697f42ade2170.tar.bz2
platform_external_arm-trusted-firmware-46b3003b052cd56e68fb68d38e3697f42ade2170.zip
Merge "Necessary fix in drivers to upgrade to mbedtls-2.18.0" into integration
Diffstat (limited to 'drivers')
-rw-r--r--drivers/auth/cryptocell/712/cryptocell_crypto.c3
-rw-r--r--drivers/auth/mbedtls/mbedtls_crypto.c1
2 files changed, 3 insertions, 1 deletions
diff --git a/drivers/auth/cryptocell/712/cryptocell_crypto.c b/drivers/auth/cryptocell/712/cryptocell_crypto.c
index cf4317534..c7ee36fa7 100644
--- a/drivers/auth/cryptocell/712/cryptocell_crypto.c
+++ b/drivers/auth/cryptocell/712/cryptocell_crypto.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2017-2019, ARM Limited and Contributors. All rights reserved.
+ * Copyright (c) 2017-2020, ARM Limited and Contributors. All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
@@ -22,6 +22,7 @@
#include <lib/utils.h>
#include <mbedtls/oid.h>
+#include <mbedtls/x509.h>
#define LIB_NAME "CryptoCell 712 SBROM"
#define RSA_SALT_LEN 32
diff --git a/drivers/auth/mbedtls/mbedtls_crypto.c b/drivers/auth/mbedtls/mbedtls_crypto.c
index 2a9801497..6d6efb503 100644
--- a/drivers/auth/mbedtls/mbedtls_crypto.c
+++ b/drivers/auth/mbedtls/mbedtls_crypto.c
@@ -14,6 +14,7 @@
#include <mbedtls/memory_buffer_alloc.h>
#include <mbedtls/oid.h>
#include <mbedtls/platform.h>
+#include <mbedtls/x509.h>
#include <common/debug.h>
#include <drivers/auth/crypto_mod.h>