Remove explicit include of mbedtls/config.h

Including mbedtls/config.h should not be done explicitely. This prevents using MBEDTLS_CONFIG_FILE macro.
Correct config file is automatically included by other mbedtls header files.
pull/12521/head
Kimmo Vaisanen 2020-02-27 09:42:31 +02:00
parent 67e950296d
commit 29affbccab
2 changed files with 0 additions and 2 deletions

View File

@ -17,7 +17,6 @@
#include "DeviceKey.h"
#if DEVICEKEY_ENABLED
#include "mbedtls/config.h"
#include "mbedtls/cmac.h"
#include "mbedtls/platform.h"
#include "features/storage/kvstore/include/KVStore.h"

View File

@ -30,7 +30,6 @@ SPDX-License-Identifier: BSD-3-Clause
#ifndef MBED_LORAWAN_MAC_LORAMAC_CRYPTO_H__
#define MBED_LORAWAN_MAC_LORAMAC_CRYPTO_H__
#include "mbedtls/config.h"
#include "mbedtls/aes.h"
#include "mbedtls/cmac.h"