From b33c2d9cef468d87f9846f3a95a0f09eff8244f9 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Wed, 24 Sep 2014 07:29:09 -0600 Subject: [PATCH] Move include/nuttx/mm.h to include/nuttx/mm/mm.h --- arch/arm/src/stm32/stm32_ccm.h | 2 +- binfmt/binfmt_execmodule.c | 2 +- configs/mikroe-stm32f4/kernel/up_userspace.c | 4 ++-- configs/open1788/kernel/up_userspace.c | 4 ++-- configs/sam3u-ek/kernel/up_userspace.c | 4 ++-- configs/stm3240g-eval/kernel/up_userspace.c | 4 ++-- configs/stm32f4discovery/kernel/up_userspace.c | 4 ++-- include/nuttx/addrenv.h | 2 +- include/nuttx/kmalloc.h | 4 ++-- include/nuttx/{ => mm}/mm.h | 8 ++++---- mm/README.txt | 6 +++--- mm/kmm_heap/kmm_addregion.c | 2 +- mm/kmm_heap/kmm_brkaddr.c | 2 +- mm/kmm_heap/kmm_calloc.c | 2 +- mm/kmm_heap/kmm_extend.c | 2 +- mm/kmm_heap/kmm_free.c | 2 +- mm/kmm_heap/kmm_heapmember.c | 2 +- mm/kmm_heap/kmm_initialize.c | 2 +- mm/kmm_heap/kmm_mallinfo.c | 2 +- mm/kmm_heap/kmm_malloc.c | 2 +- mm/kmm_heap/kmm_memalign.c | 2 +- mm/kmm_heap/kmm_realloc.c | 2 +- mm/kmm_heap/kmm_sbrk.c | 2 +- mm/kmm_heap/kmm_sem.c | 2 +- mm/kmm_heap/kmm_zalloc.c | 2 +- mm/mm_heap/mm_addfreechunk.c | 2 +- mm/mm_heap/mm_brkaddr.c | 2 +- mm/mm_heap/mm_calloc.c | 2 +- mm/mm_heap/mm_extend.c | 2 +- mm/mm_heap/mm_free.c | 2 +- mm/mm_heap/mm_initialize.c | 2 +- mm/mm_heap/mm_mallinfo.c | 2 +- mm/mm_heap/mm_malloc.c | 2 +- mm/mm_heap/mm_memalign.c | 2 +- mm/mm_heap/mm_realloc.c | 2 +- mm/mm_heap/mm_sbrk.c | 2 +- mm/mm_heap/mm_sem.c | 2 +- mm/mm_heap/mm_shrinkchunk.c | 2 +- mm/mm_heap/mm_size2ndx.c | 2 +- mm/mm_heap/mm_zalloc.c | 2 +- mm/umm_heap/umm_addregion.c | 2 +- mm/umm_heap/umm_brkaddr.c | 2 +- mm/umm_heap/umm_calloc.c | 2 +- mm/umm_heap/umm_extend.c | 2 +- mm/umm_heap/umm_free.c | 2 +- mm/umm_heap/umm_initialize.c | 2 +- mm/umm_heap/umm_mallinfo.c | 2 +- mm/umm_heap/umm_malloc.c | 2 +- mm/umm_heap/umm_memalign.c | 2 +- mm/umm_heap/umm_realloc.c | 2 +- mm/umm_heap/umm_sbrk.c | 2 +- mm/umm_heap/umm_sem.c | 2 +- mm/umm_heap/umm_zalloc.c | 2 +- sched/init/os_start.c | 2 +- 54 files changed, 65 insertions(+), 65 deletions(-) rename include/nuttx/{ => mm}/mm.h (99%) diff --git a/arch/arm/src/stm32/stm32_ccm.h b/arch/arm/src/stm32/stm32_ccm.h index 9b5041bc1e..91b3303879 100755 --- a/arch/arm/src/stm32/stm32_ccm.h +++ b/arch/arm/src/stm32/stm32_ccm.h @@ -43,7 +43,7 @@ #include -#include +#include /**************************************************************************** * Pre-processor Definitions diff --git a/binfmt/binfmt_execmodule.c b/binfmt/binfmt_execmodule.c index 256a7b7429..ccc20063cb 100644 --- a/binfmt/binfmt_execmodule.c +++ b/binfmt/binfmt_execmodule.c @@ -48,7 +48,7 @@ #include #include -#include +#include #include #include diff --git a/configs/mikroe-stm32f4/kernel/up_userspace.c b/configs/mikroe-stm32f4/kernel/up_userspace.c index 614ae3b899..ed2f7d8a95 100644 --- a/configs/mikroe-stm32f4/kernel/up_userspace.c +++ b/configs/mikroe-stm32f4/kernel/up_userspace.c @@ -43,7 +43,7 @@ #include #include -#include +#include #if defined(CONFIG_BUILD_PROTECTED) && !defined(__KERNEL__) @@ -114,7 +114,7 @@ const struct userspace_s userspace __attribute__ ((section (".userspace"))) = .signal_handler = up_signal_handler, #endif - /* Memory manager entry points (declared in include/nuttx/mm.h) */ + /* Memory manager entry points (declared in include/nuttx/mm/mm.h) */ .mm_initialize = umm_initialize, .mm_addregion = umm_addregion, diff --git a/configs/open1788/kernel/up_userspace.c b/configs/open1788/kernel/up_userspace.c index ffcd8db480..48413ec159 100644 --- a/configs/open1788/kernel/up_userspace.c +++ b/configs/open1788/kernel/up_userspace.c @@ -43,7 +43,7 @@ #include #include -#include +#include #if defined(CONFIG_BUILD_PROTECTED) && !defined(__KERNEL__) @@ -114,7 +114,7 @@ const struct userspace_s userspace __attribute__ ((section (".userspace"))) = .signal_handler = up_signal_handler, #endif - /* Memory manager entry points (declared in include/nuttx/mm.h) */ + /* Memory manager entry points (declared in include/nuttx/mm/mm.h) */ .mm_initialize = umm_initialize, .mm_addregion = umm_addregion, diff --git a/configs/sam3u-ek/kernel/up_userspace.c b/configs/sam3u-ek/kernel/up_userspace.c index 51ed83b6fe..7a71c8ad16 100644 --- a/configs/sam3u-ek/kernel/up_userspace.c +++ b/configs/sam3u-ek/kernel/up_userspace.c @@ -43,7 +43,7 @@ #include #include -#include +#include #if defined(CONFIG_BUILD_PROTECTED) && !defined(__KERNEL__) @@ -114,7 +114,7 @@ const struct userspace_s userspace __attribute__ ((section (".userspace"))) = .signal_handler = up_signal_handler, #endif - /* Memory manager entry points (declared in include/nuttx/mm.h) */ + /* Memory manager entry points (declared in include/nuttx/mm/mm.h) */ .mm_initialize = umm_initialize, .mm_addregion = umm_addregion, diff --git a/configs/stm3240g-eval/kernel/up_userspace.c b/configs/stm3240g-eval/kernel/up_userspace.c index c5aecd02e5..7947c99de4 100644 --- a/configs/stm3240g-eval/kernel/up_userspace.c +++ b/configs/stm3240g-eval/kernel/up_userspace.c @@ -43,7 +43,7 @@ #include #include -#include +#include #if defined(CONFIG_BUILD_PROTECTED) && !defined(__KERNEL__) @@ -114,7 +114,7 @@ const struct userspace_s userspace __attribute__ ((section (".userspace"))) = .signal_handler = up_signal_handler, #endif - /* Memory manager entry points (declared in include/nuttx/mm.h) */ + /* Memory manager entry points (declared in include/nuttx/mm/mm.h) */ .mm_initialize = umm_initialize, .mm_addregion = umm_addregion, diff --git a/configs/stm32f4discovery/kernel/up_userspace.c b/configs/stm32f4discovery/kernel/up_userspace.c index 19fda356d3..36065bdaed 100644 --- a/configs/stm32f4discovery/kernel/up_userspace.c +++ b/configs/stm32f4discovery/kernel/up_userspace.c @@ -42,7 +42,7 @@ #include #include -#include +#include #include #include @@ -115,7 +115,7 @@ const struct userspace_s userspace __attribute__ ((section (".userspace"))) = .signal_handler = up_signal_handler, #endif - /* Memory manager entry points (declared in include/nuttx/mm.h) */ + /* Memory manager entry points (declared in include/nuttx/mm/mm.h) */ .mm_initialize = umm_initialize, .mm_addregion = umm_addregion, diff --git a/include/nuttx/addrenv.h b/include/nuttx/addrenv.h index 4aaa2d550e..0cb854376f 100644 --- a/include/nuttx/addrenv.h +++ b/include/nuttx/addrenv.h @@ -44,7 +44,7 @@ #ifdef CONFIG_BUILD_KERNEL # include -# include +# include #endif #ifdef CONFIG_ARCH_ADDRENV diff --git a/include/nuttx/kmalloc.h b/include/nuttx/kmalloc.h index 44ebf9746e..43d9f344c1 100644 --- a/include/nuttx/kmalloc.h +++ b/include/nuttx/kmalloc.h @@ -46,7 +46,7 @@ #include #include -#include +#include #include #if !defined(CONFIG_BUILD_PROTECTED) || defined(__KERNEL__) @@ -151,7 +151,7 @@ extern "C" # define kmm_free(p) umm_free(p) #else -/* Otherwise, the kernel-space allocators are declared in include/nuttx/mm.h +/* Otherwise, the kernel-space allocators are declared in include/nuttx/mm/mm.h * and we can call them directly. */ diff --git a/include/nuttx/mm.h b/include/nuttx/mm/mm.h similarity index 99% rename from include/nuttx/mm.h rename to include/nuttx/mm/mm.h index b748c16b4d..05968f6258 100644 --- a/include/nuttx/mm.h +++ b/include/nuttx/mm/mm.h @@ -1,5 +1,5 @@ /**************************************************************************** - * include/nuttx/mm.h + * include/nuttx/mm/mm.h * * Copyright (C) 2007-2009, 2013-2014 Gregory Nutt. All rights reserved. * Author: Gregory Nutt @@ -33,8 +33,8 @@ * ****************************************************************************/ -#ifndef __INCLUDE_NUTTX_MM_H -#define __INCLUDE_NUTTX_MM_H +#ifndef __INCLUDE_NUTTX_MM_MM_H +#define __INCLUDE_NUTTX_MM_MM_H /**************************************************************************** * Included Files @@ -488,4 +488,4 @@ int mm_size2ndx(size_t size); } #endif -#endif /* __INCLUDE_NUTTX_MM_H */ +#endif /* __INCLUDE_NUTTX_MM_MM_H */ diff --git a/mm/README.txt b/mm/README.txt index e604cee7ed..0e9a4e7d22 100644 --- a/mm/README.txt +++ b/mm/README.txt @@ -40,11 +40,11 @@ This directory contains the NuttX memory management logic. This include: This allocator can be used to manage multiple heaps (albeit with some non-standard interfaces). A heap is represented by struct mm_heap_s - as defined in the file include/nuttx/mm.h. To create another heap + as defined in the file include/nuttx/mm/mm.h. To create another heap instance, you would allocate a heap structure, most likely statically in memory: - include + include static struct mm_heap_s g_myheap; Then initialize the heap using: @@ -52,7 +52,7 @@ This directory contains the NuttX memory management logic. This include: mm_initialize(&g_myheap, myheap_start, myheap_size); Where mm_initialize() and all related interfaces are prototyped in the - header file include/nuttx/mm.h. + header file include/nuttx/mm/mm.h. After the new heap instance has been initialized, it can then be used with these almost familiar interfaces: mm_malloc(), mm_realloc(), mm_free(), diff --git a/mm/kmm_heap/kmm_addregion.c b/mm/kmm_heap/kmm_addregion.c index da1068ceed..cccb202699 100644 --- a/mm/kmm_heap/kmm_addregion.c +++ b/mm/kmm_heap/kmm_addregion.c @@ -39,7 +39,7 @@ #include -#include +#include #ifdef CONFIG_MM_KERNEL_HEAP diff --git a/mm/kmm_heap/kmm_brkaddr.c b/mm/kmm_heap/kmm_brkaddr.c index 34c8855dfe..a04032e832 100644 --- a/mm/kmm_heap/kmm_brkaddr.c +++ b/mm/kmm_heap/kmm_brkaddr.c @@ -41,7 +41,7 @@ #include -#include +#include #ifdef CONFIG_MM_KERNEL_HEAP diff --git a/mm/kmm_heap/kmm_calloc.c b/mm/kmm_heap/kmm_calloc.c index 070ed568cd..2da8e815c8 100644 --- a/mm/kmm_heap/kmm_calloc.c +++ b/mm/kmm_heap/kmm_calloc.c @@ -39,7 +39,7 @@ #include -#include +#include #ifdef CONFIG_MM_KERNEL_HEAP diff --git a/mm/kmm_heap/kmm_extend.c b/mm/kmm_heap/kmm_extend.c index e0a6c701fe..0a05ccd8d6 100644 --- a/mm/kmm_heap/kmm_extend.c +++ b/mm/kmm_heap/kmm_extend.c @@ -39,7 +39,7 @@ #include -#include +#include #ifdef CONFIG_MM_KERNEL_HEAP diff --git a/mm/kmm_heap/kmm_free.c b/mm/kmm_heap/kmm_free.c index 15b9f8ac41..1b300158b3 100644 --- a/mm/kmm_heap/kmm_free.c +++ b/mm/kmm_heap/kmm_free.c @@ -42,7 +42,7 @@ #include #include -#include +#include #ifdef CONFIG_MM_KERNEL_HEAP diff --git a/mm/kmm_heap/kmm_heapmember.c b/mm/kmm_heap/kmm_heapmember.c index 2a1ca7c00b..d872288721 100644 --- a/mm/kmm_heap/kmm_heapmember.c +++ b/mm/kmm_heap/kmm_heapmember.c @@ -41,7 +41,7 @@ #include -#include +#include #if defined(CONFIG_MM_KERNEL_HEAP) && defined(CONFIG_DEBUG) diff --git a/mm/kmm_heap/kmm_initialize.c b/mm/kmm_heap/kmm_initialize.c index deeb0e25fc..ed4cbc926a 100644 --- a/mm/kmm_heap/kmm_initialize.c +++ b/mm/kmm_heap/kmm_initialize.c @@ -39,7 +39,7 @@ #include -#include +#include #ifdef CONFIG_MM_KERNEL_HEAP diff --git a/mm/kmm_heap/kmm_mallinfo.c b/mm/kmm_heap/kmm_mallinfo.c index 8a0ddf0e86..2ad3d26df6 100644 --- a/mm/kmm_heap/kmm_mallinfo.c +++ b/mm/kmm_heap/kmm_mallinfo.c @@ -41,7 +41,7 @@ #include -#include +#include #ifdef CONFIG_MM_KERNEL_HEAP diff --git a/mm/kmm_heap/kmm_malloc.c b/mm/kmm_heap/kmm_malloc.c index 22b5d4894b..a92e5e5449 100644 --- a/mm/kmm_heap/kmm_malloc.c +++ b/mm/kmm_heap/kmm_malloc.c @@ -39,7 +39,7 @@ #include -#include +#include #ifdef CONFIG_MM_KERNEL_HEAP diff --git a/mm/kmm_heap/kmm_memalign.c b/mm/kmm_heap/kmm_memalign.c index b74c408662..40327e1d82 100644 --- a/mm/kmm_heap/kmm_memalign.c +++ b/mm/kmm_heap/kmm_memalign.c @@ -41,7 +41,7 @@ #include -#include +#include #ifdef CONFIG_MM_KERNEL_HEAP diff --git a/mm/kmm_heap/kmm_realloc.c b/mm/kmm_heap/kmm_realloc.c index f41e69182d..3f553c0716 100644 --- a/mm/kmm_heap/kmm_realloc.c +++ b/mm/kmm_heap/kmm_realloc.c @@ -39,7 +39,7 @@ #include -#include +#include #ifdef CONFIG_MM_KERNEL_HEAP diff --git a/mm/kmm_heap/kmm_sbrk.c b/mm/kmm_heap/kmm_sbrk.c index 59dd810e9f..3cee21b426 100755 --- a/mm/kmm_heap/kmm_sbrk.c +++ b/mm/kmm_heap/kmm_sbrk.c @@ -39,7 +39,7 @@ #include -#include +#include #if defined(CONFIG_BUILD_KERNEL) && defined(__KERNEL__) diff --git a/mm/kmm_heap/kmm_sem.c b/mm/kmm_heap/kmm_sem.c index 3a274bc041..47fce18d41 100644 --- a/mm/kmm_heap/kmm_sem.c +++ b/mm/kmm_heap/kmm_sem.c @@ -39,7 +39,7 @@ #include -#include +#include #ifdef CONFIG_MM_KERNEL_HEAP diff --git a/mm/kmm_heap/kmm_zalloc.c b/mm/kmm_heap/kmm_zalloc.c index af70afe9ce..c09f329045 100644 --- a/mm/kmm_heap/kmm_zalloc.c +++ b/mm/kmm_heap/kmm_zalloc.c @@ -39,7 +39,7 @@ #include -#include +#include #ifdef CONFIG_MM_KERNEL_HEAP diff --git a/mm/mm_heap/mm_addfreechunk.c b/mm/mm_heap/mm_addfreechunk.c index 86ecfa1297..64b503dd74 100644 --- a/mm/mm_heap/mm_addfreechunk.c +++ b/mm/mm_heap/mm_addfreechunk.c @@ -39,7 +39,7 @@ #include -#include +#include /**************************************************************************** * Pre-processor Definitions diff --git a/mm/mm_heap/mm_brkaddr.c b/mm/mm_heap/mm_brkaddr.c index 74f9facc7a..1d7b22680c 100644 --- a/mm/mm_heap/mm_brkaddr.c +++ b/mm/mm_heap/mm_brkaddr.c @@ -41,7 +41,7 @@ #include -#include +#include /**************************************************************************** * Pre-processor Definitions diff --git a/mm/mm_heap/mm_calloc.c b/mm/mm_heap/mm_calloc.c index 4d23512acb..fe94ff0338 100644 --- a/mm/mm_heap/mm_calloc.c +++ b/mm/mm_heap/mm_calloc.c @@ -39,7 +39,7 @@ #include -#include +#include /**************************************************************************** * Pre-processor Definitions diff --git a/mm/mm_heap/mm_extend.c b/mm/mm_heap/mm_extend.c index d8a7f72f44..46c1fe0feb 100644 --- a/mm/mm_heap/mm_extend.c +++ b/mm/mm_heap/mm_extend.c @@ -41,7 +41,7 @@ #include -#include +#include /**************************************************************************** * Pre-processor Definitions diff --git a/mm/mm_heap/mm_free.c b/mm/mm_heap/mm_free.c index e3613484e4..ae0f50d3c7 100644 --- a/mm/mm_heap/mm_free.c +++ b/mm/mm_heap/mm_free.c @@ -42,7 +42,7 @@ #include #include -#include +#include /**************************************************************************** * Pre-processor Definitions diff --git a/mm/mm_heap/mm_initialize.c b/mm/mm_heap/mm_initialize.c index cfddc8d2a6..f2d02d64bd 100644 --- a/mm/mm_heap/mm_initialize.c +++ b/mm/mm_heap/mm_initialize.c @@ -43,7 +43,7 @@ #include #include -#include +#include /**************************************************************************** * Pre-processor Definitions diff --git a/mm/mm_heap/mm_mallinfo.c b/mm/mm_heap/mm_mallinfo.c index 5426b1eee3..9b97760dd8 100644 --- a/mm/mm_heap/mm_mallinfo.c +++ b/mm/mm_heap/mm_mallinfo.c @@ -43,7 +43,7 @@ #include #include -#include +#include /**************************************************************************** * Pre-processor Definitions diff --git a/mm/mm_heap/mm_malloc.c b/mm/mm_heap/mm_malloc.c index 6aa76a3d49..20b1916c8b 100644 --- a/mm/mm_heap/mm_malloc.c +++ b/mm/mm_heap/mm_malloc.c @@ -42,7 +42,7 @@ #include #include -#include +#include /**************************************************************************** * Pre-processor Definitions diff --git a/mm/mm_heap/mm_memalign.c b/mm/mm_heap/mm_memalign.c index 0aeaf2c787..aa7971c0cb 100644 --- a/mm/mm_heap/mm_memalign.c +++ b/mm/mm_heap/mm_memalign.c @@ -41,7 +41,7 @@ #include -#include +#include /**************************************************************************** * Pre-processor Definitions diff --git a/mm/mm_heap/mm_realloc.c b/mm/mm_heap/mm_realloc.c index 21a0f7d5d7..f41d019b5e 100644 --- a/mm/mm_heap/mm_realloc.c +++ b/mm/mm_heap/mm_realloc.c @@ -44,7 +44,7 @@ #include #include -#include +#include /**************************************************************************** * Pre-processor Definitions diff --git a/mm/mm_heap/mm_sbrk.c b/mm/mm_heap/mm_sbrk.c index 6a46770606..a0f868012e 100644 --- a/mm/mm_heap/mm_sbrk.c +++ b/mm/mm_heap/mm_sbrk.c @@ -44,7 +44,7 @@ #include #include -#include +#include #include #ifdef CONFIG_BUILD_KERNEL diff --git a/mm/mm_heap/mm_sem.c b/mm/mm_heap/mm_sem.c index baec83732e..4be65b623c 100644 --- a/mm/mm_heap/mm_sem.c +++ b/mm/mm_heap/mm_sem.c @@ -43,7 +43,7 @@ #include #include -#include +#include /**************************************************************************** * Pre-processor Definitions diff --git a/mm/mm_heap/mm_shrinkchunk.c b/mm/mm_heap/mm_shrinkchunk.c index 58cffb9fd3..05fc3a7a0d 100644 --- a/mm/mm_heap/mm_shrinkchunk.c +++ b/mm/mm_heap/mm_shrinkchunk.c @@ -41,7 +41,7 @@ #include -#include +#include /**************************************************************************** * Pre-processor Definitions diff --git a/mm/mm_heap/mm_size2ndx.c b/mm/mm_heap/mm_size2ndx.c index 2989e6c075..e3273767e9 100644 --- a/mm/mm_heap/mm_size2ndx.c +++ b/mm/mm_heap/mm_size2ndx.c @@ -39,7 +39,7 @@ #include -#include +#include /**************************************************************************** * Pre-processor Definitions diff --git a/mm/mm_heap/mm_zalloc.c b/mm/mm_heap/mm_zalloc.c index 2706c44aff..deb3408d67 100644 --- a/mm/mm_heap/mm_zalloc.c +++ b/mm/mm_heap/mm_zalloc.c @@ -41,7 +41,7 @@ #include -#include +#include /**************************************************************************** * Pre-processor Definitions diff --git a/mm/umm_heap/umm_addregion.c b/mm/umm_heap/umm_addregion.c index 5f266fffef..3e756a999a 100644 --- a/mm/umm_heap/umm_addregion.c +++ b/mm/umm_heap/umm_addregion.c @@ -39,7 +39,7 @@ #include -#include +#include #if !defined(CONFIG_BUILD_PROTECTED) || !defined(__KERNEL__) diff --git a/mm/umm_heap/umm_brkaddr.c b/mm/umm_heap/umm_brkaddr.c index 900d75ea28..217f00641b 100644 --- a/mm/umm_heap/umm_brkaddr.c +++ b/mm/umm_heap/umm_brkaddr.c @@ -41,7 +41,7 @@ #include -#include +#include #if !defined(CONFIG_BUILD_PROTECTED) || !defined(__KERNEL__) diff --git a/mm/umm_heap/umm_calloc.c b/mm/umm_heap/umm_calloc.c index 25932bacd1..9e75c0b827 100644 --- a/mm/umm_heap/umm_calloc.c +++ b/mm/umm_heap/umm_calloc.c @@ -41,7 +41,7 @@ #include -#include +#include #if !defined(CONFIG_BUILD_PROTECTED) || !defined(__KERNEL__) diff --git a/mm/umm_heap/umm_extend.c b/mm/umm_heap/umm_extend.c index 62ee64f8ba..c95c57d6bf 100644 --- a/mm/umm_heap/umm_extend.c +++ b/mm/umm_heap/umm_extend.c @@ -39,7 +39,7 @@ #include -#include +#include #if !defined(CONFIG_BUILD_PROTECTED) || !defined(__KERNEL__) diff --git a/mm/umm_heap/umm_free.c b/mm/umm_heap/umm_free.c index 42c95d8e73..0230273d67 100644 --- a/mm/umm_heap/umm_free.c +++ b/mm/umm_heap/umm_free.c @@ -41,7 +41,7 @@ #include -#include +#include #if !defined(CONFIG_BUILD_PROTECTED) || !defined(__KERNEL__) diff --git a/mm/umm_heap/umm_initialize.c b/mm/umm_heap/umm_initialize.c index 07c82ce23c..8efb0cc87a 100644 --- a/mm/umm_heap/umm_initialize.c +++ b/mm/umm_heap/umm_initialize.c @@ -41,7 +41,7 @@ #include -#include +#include #if !defined(CONFIG_BUILD_PROTECTED) || !defined(__KERNEL__) diff --git a/mm/umm_heap/umm_mallinfo.c b/mm/umm_heap/umm_mallinfo.c index fd48c3696c..14f83cd928 100644 --- a/mm/umm_heap/umm_mallinfo.c +++ b/mm/umm_heap/umm_mallinfo.c @@ -41,7 +41,7 @@ #include -#include +#include #if !defined(CONFIG_BUILD_PROTECTED) || !defined(__KERNEL__) diff --git a/mm/umm_heap/umm_malloc.c b/mm/umm_heap/umm_malloc.c index 87cd55de20..e2cea6e3ad 100644 --- a/mm/umm_heap/umm_malloc.c +++ b/mm/umm_heap/umm_malloc.c @@ -42,7 +42,7 @@ #include #include -#include +#include #if !defined(CONFIG_BUILD_PROTECTED) || !defined(__KERNEL__) diff --git a/mm/umm_heap/umm_memalign.c b/mm/umm_heap/umm_memalign.c index 6fa91c0bc9..fefd5ce218 100644 --- a/mm/umm_heap/umm_memalign.c +++ b/mm/umm_heap/umm_memalign.c @@ -41,7 +41,7 @@ #include -#include +#include #if !defined(CONFIG_BUILD_PROTECTED) || !defined(__KERNEL__) diff --git a/mm/umm_heap/umm_realloc.c b/mm/umm_heap/umm_realloc.c index a67ecf6fe2..925c28d3d0 100644 --- a/mm/umm_heap/umm_realloc.c +++ b/mm/umm_heap/umm_realloc.c @@ -41,7 +41,7 @@ #include -#include +#include #if !defined(CONFIG_BUILD_PROTECTED) || !defined(__KERNEL__) diff --git a/mm/umm_heap/umm_sbrk.c b/mm/umm_heap/umm_sbrk.c index 787166d81d..dcb9be932c 100644 --- a/mm/umm_heap/umm_sbrk.c +++ b/mm/umm_heap/umm_sbrk.c @@ -41,7 +41,7 @@ #include -#include +#include #include #include diff --git a/mm/umm_heap/umm_sem.c b/mm/umm_heap/umm_sem.c index 9051737e6d..387266ae53 100644 --- a/mm/umm_heap/umm_sem.c +++ b/mm/umm_heap/umm_sem.c @@ -39,7 +39,7 @@ #include -#include +#include #if !defined(CONFIG_BUILD_PROTECTED) || !defined(__KERNEL__) diff --git a/mm/umm_heap/umm_zalloc.c b/mm/umm_heap/umm_zalloc.c index de6790f882..37b602dd94 100644 --- a/mm/umm_heap/umm_zalloc.c +++ b/mm/umm_heap/umm_zalloc.c @@ -42,7 +42,7 @@ #include #include -#include +#include #if !defined(CONFIG_BUILD_PROTECTED) || !defined(__KERNEL__) diff --git a/sched/init/os_start.c b/sched/init/os_start.c index e2c01c1ced..ca0fdb21f5 100644 --- a/sched/init/os_start.c +++ b/sched/init/os_start.c @@ -48,7 +48,7 @@ #include #include #include -#include +#include #include #include #include