aboutsummaryrefslogtreecommitdiff
path: root/include/drivers
diff options
context:
space:
mode:
authorMasahiro Yamada <yamada.masahiro@socionext.com>2019-09-04 14:09:07 +0900
committerMasahiro Yamada <yamada.masahiro@socionext.com>2019-09-04 15:35:42 +0900
commit948a0c0d3c756a69dca56f76d02eed119956cc79 (patch)
treee1019060650966a0ed206f2f62dbd3bf8f0fd94b /include/drivers
parent3441952f61a62948ccf84c2e3eada9b340c3560d (diff)
downloadtrusted-firmware-a-948a0c0d3c756a69dca56f76d02eed119956cc79.tar.gz
mbedtls: use #include <...> instead of "..."
The #include "mbedtls/check_config.h" directive first searches for the header in the relative path to mbedtls_config.h, i.e. include/drivers/auth/mbedtls/mbedtls/check_config.h Obviously, it does not exist since check_config.h is located in the mbedtls project. It is more sensible to use #include <...> form. Change-Id: If72a71381f84e7748a2c9f07dd1176559d9bb1d2 Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'include/drivers')
-rw-r--r--include/drivers/auth/mbedtls/mbedtls_config.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/drivers/auth/mbedtls/mbedtls_config.h b/include/drivers/auth/mbedtls/mbedtls_config.h
index acfde268a2..f7248f984d 100644
--- a/include/drivers/auth/mbedtls/mbedtls_config.h
+++ b/include/drivers/auth/mbedtls/mbedtls_config.h
@@ -89,7 +89,7 @@
#ifndef __ASSEMBLER__
/* System headers required to build mbed TLS with the current configuration */
#include <stdlib.h>
-#include "mbedtls/check_config.h"
+#include <mbedtls/check_config.h>
#endif
/*