From fde5d3f516b69f9123ca5d7d401b44686324e601 Mon Sep 17 00:00:00 2001 From: isiora Date: Wed, 15 Nov 2017 17:11:57 +0000 Subject: [PATCH] Fixed SAMA_HAL_IS_SECURE define macro git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@11014 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- os/hal/ports/SAMA/SAMA5D2x/hal_lld.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/os/hal/ports/SAMA/SAMA5D2x/hal_lld.h b/os/hal/ports/SAMA/SAMA5D2x/hal_lld.h index 6c5624eec..c1b1e14d5 100644 --- a/os/hal/ports/SAMA/SAMA5D2x/hal_lld.h +++ b/os/hal/ports/SAMA/SAMA5D2x/hal_lld.h @@ -187,7 +187,7 @@ * Zone. It must be @p TRUE whenever the code is compiled for the * secure side. */ -#if !defined(SAMA_NO_INIT) || defined(__DOXYGEN__) +#if !defined(SAMA_HAL_IS_SECURE) || defined(__DOXYGEN__) #define SAMA_HAL_IS_SECURE TRUE #endif