mm/kconfig: fix typo in MM_DEFAULT_ALIGNMENT

This fixes minor typo in MM_DEFAULT_ALIGNMENT

Signed-off-by: Yanfeng Liu <yfliu2008@qq.com>
This commit is contained in:
Yanfeng Liu
2024-03-11 09:48:47 +08:00
committed by archer
parent d468ff3eeb
commit 5ac401d941
3 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -38,10 +38,10 @@
* Pre-processor Definitions
****************************************************************************/
#if CONFIG_MM_DFAULT_ALIGNMENT == 0
#if CONFIG_MM_DEFAULT_ALIGNMENT == 0
# define MEMPOOL_ALIGN (2 * sizeof(uintptr_t))
#else
# define MEMPOOL_ALIGN CONFIG_MM_DFAULT_ALIGNMENT
# define MEMPOOL_ALIGN CONFIG_MM_DEFAULT_ALIGNMENT
#endif
#if CONFIG_MM_BACKTRACE >= 0