mbedtls: use #include <...> instead of "..."
authorMasahiro Yamada <yamada.masahiro@socionext.com>
Wed, 4 Sep 2019 05:09:07 +0000 (14:09 +0900)
committerMasahiro Yamada <yamada.masahiro@socionext.com>
Wed, 4 Sep 2019 06:35:42 +0000 (15:35 +0900)
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>
include/drivers/auth/mbedtls/mbedtls_config.h

index acfde268a2e54ad42f83fe4a343b35c4484fff62..f7248f984dfdd5407bea05d8cb7053e3b241c18b 100644 (file)
@@ -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
 
 /*