aboutsummaryrefslogtreecommitdiffstats
path: root/os/kernel/include/memcore.h
diff options
context:
space:
mode:
Diffstat (limited to 'os/kernel/include/memcore.h')
-rw-r--r--os/kernel/include/memcore.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/os/kernel/include/memcore.h b/os/kernel/include/memcore.h
index 9fc8d7a44..c0aa9c9a2 100644
--- a/os/kernel/include/memcore.h
+++ b/os/kernel/include/memcore.h
@@ -29,11 +29,6 @@
#define _MEMCORE_H_
/**
- * @brief Memory alignment type.
- */
-typedef void *align_t;
-
-/**
* @brief Memory get function.
* @note This type must be assignment compatible with the @p chMemAlloc()
* function.
@@ -43,7 +38,7 @@ typedef void *(*memgetfunc_t)(size_t size);
/**
* @brief Alignment mask constant.
*/
-#define MEM_ALIGN_MASK (sizeof(align_t) - 1)
+#define MEM_ALIGN_MASK (sizeof(stkalign_t) - 1)
/**
* @brief Alignment helper macro.