From 4446e82146a062f1f72fa7816900be1f0b535b0f Mon Sep 17 00:00:00 2001 From: Joe Subbiani Date: Wed, 18 Aug 2021 12:50:12 +0100 Subject: [PATCH] Remove redundant config.h includes definitions common.h already includes config.h, so a a file uses common.h it no longer requires the definition/inclusion of config.h Signed-off-by: Joe Subbiani --- library/psa_crypto_storage.c | 6 ------ library/psa_its_file.c | 6 ------ 2 files changed, 12 deletions(-) diff --git a/library/psa_crypto_storage.c b/library/psa_crypto_storage.c index 70d86bf84..f5ed2693f 100644 --- a/library/psa_crypto_storage.c +++ b/library/psa_crypto_storage.c @@ -18,12 +18,6 @@ * limitations under the License. */ -#if defined(MBEDTLS_CONFIG_FILE) -#include MBEDTLS_CONFIG_FILE -#else -#include "mbedtls/config.h" -#endif - #if defined(MBEDTLS_PSA_CRYPTO_STORAGE_C) #include diff --git a/library/psa_its_file.c b/library/psa_its_file.c index ee11cb323..08503f276 100644 --- a/library/psa_its_file.c +++ b/library/psa_its_file.c @@ -18,12 +18,6 @@ * limitations under the License. */ -#if defined(MBEDTLS_CONFIG_FILE) -#include MBEDTLS_CONFIG_FILE -#else -#include "mbedtls/config.h" -#endif - #if defined(MBEDTLS_PSA_ITS_FILE_C) #if defined(MBEDTLS_PLATFORM_C)