diff options
author | isiora <none@example.com> | 2017-11-15 17:11:57 +0000 |
---|---|---|
committer | isiora <none@example.com> | 2017-11-15 17:11:57 +0000 |
commit | fde5d3f516b69f9123ca5d7d401b44686324e601 (patch) | |
tree | c1c8c73d297a9bf76cb368fe2b92b102a673cee9 | |
parent | 94ae4371ebb96036b329219cd72b6b08449470e5 (diff) | |
download | ChibiOS-fde5d3f516b69f9123ca5d7d401b44686324e601.tar.gz ChibiOS-fde5d3f516b69f9123ca5d7d401b44686324e601.tar.bz2 ChibiOS-fde5d3f516b69f9123ca5d7d401b44686324e601.zip |
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
-rw-r--r-- | os/hal/ports/SAMA/SAMA5D2x/hal_lld.h | 2 |
1 files changed, 1 insertions, 1 deletions
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
|