From 9bf05a56e0919c1ad3987ccb8a880bbabf99efe3 Mon Sep 17 00:00:00 2001 From: Ulf Magnusson Date: Sun, 10 Mar 2019 04:58:20 +0100 Subject: [PATCH] mbedtls: kconfig: Remove redundant 'depends on MBEDTLS' Appears within an 'if MBEDTLS'. 'if FOO' is just shorthand for adding 'depends on FOO' to each item within the 'if'. Signed-off-by: Ulf Magnusson --- ext/lib/crypto/mbedtls/Kconfig | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ext/lib/crypto/mbedtls/Kconfig b/ext/lib/crypto/mbedtls/Kconfig index f88f6bffc3..854a4de98f 100644 --- a/ext/lib/crypto/mbedtls/Kconfig +++ b/ext/lib/crypto/mbedtls/Kconfig @@ -140,10 +140,9 @@ config MBEDTLS_HEAP_SIZE config APP_LINK_WITH_MBEDTLS bool "Link 'app' with MBEDTLS" default y - depends on MBEDTLS help Add MBEDTLS header files to the 'app' include path. It may be disabled if the include paths for MBEDTLS are causing aliasing issues for 'app'. -endif +endif # MBEDTLS