From 420a48a5aacf31a5ad3aacc9718e93e4c3e3545d Mon Sep 17 00:00:00 2001 From: Daniele Lacamera Date: Thu, 13 May 2021 07:40:22 +0200 Subject: [PATCH] Removed unnecessary headers --- wolfcrypt/src/port/nxp/dcp_port.c | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/wolfcrypt/src/port/nxp/dcp_port.c b/wolfcrypt/src/port/nxp/dcp_port.c index 081bf256f..330115f4f 100644 --- a/wolfcrypt/src/port/nxp/dcp_port.c +++ b/wolfcrypt/src/port/nxp/dcp_port.c @@ -27,42 +27,21 @@ #include #ifdef WOLFSSL_IMXRT_DCP - -#ifdef NO_INLINE - #include -#else - #define WOLFSSL_MISC_INCLUDED - #include -#endif - #include #include #include #include -#include "fsl_device_registers.h" -#include "fsl_debug_console.h" #if defined(__DCACHE_PRESENT) && (__DCACHE_PRESENT == 1U) && defined(DCP_USE_DCACHE) && (DCP_USE_DCACHE == 1U) #error "DCACHE not supported by this driver. Please undefine DCP_USE_DCACHE." #endif - #ifndef DCP_USE_OTP_KEY #define DCP_USE_OTP_KEY 0 /* Set to 1 to select OTP key for AES encryption/decryption. */ #endif -#include "fsl_device_registers.h" -#include "fsl_debug_console.h" #include "fsl_dcp.h" -#ifdef USE_FAST_MATH - #include -#elif defined WOLFSSL_SP_MATH - #include -#else - #include -#endif - #ifndef SINGLE_THREADED #define dcp_lock_init() wolfSSL_CryptHwMutexInit() #define dcp_lock() wolfSSL_CryptHwMutexLock()