arch/arm/src/stm32h7/stm32_allocateheap.c: Clean up some comments mangled in the last PR.

This commit is contained in:
Gregory Nutt 2019-11-06 13:24:33 -06:00
parent 1168e4ecea
commit 79a2890ed5

View File

@ -76,11 +76,10 @@
* CONFIG_STM32H7_FMC=y : Enables the FMC * CONFIG_STM32H7_FMC=y : Enables the FMC
* CONFIG_STM32H7_FMC_S[D]RAM=y : SRAM and/or SDRAM is available via the FMC. * CONFIG_STM32H7_FMC_S[D]RAM=y : SRAM and/or SDRAM is available via the FMC.
* Either of these autoselects * Either of these autoselects
* CONFIG_ARCH_HAVE_HEAP2 * CONFIG_ARCH_HAVE_HEAP2 which is what we
* which is what we are interested in here. * are interested in here.
* CONFIG_HEAP2_BASE : The base address of the external RAM in * CONFIG_HEAP2_BASE : The base address of the external RAM in
* the FMC * the FMC address space
* address space
* CONFIG_HEAP2_SIZE : The size of the external RAM in the FMC * CONFIG_HEAP2_SIZE : The size of the external RAM in the FMC
* address space * address space
* CONFIG_MM_REGIONS : Must be set to a large enough value to * CONFIG_MM_REGIONS : Must be set to a large enough value to
@ -191,7 +190,8 @@ static inline void up_heap_color(FAR void *start, size_t size)
* Padding for alignment * Padding for alignment
* User .data region. Size determined at link time. * User .data region. Size determined at link time.
* User .bss region Size determined at link time. * User .bss region Size determined at link time.
* Kernel heap. Size determined by CONFIG_MM_KERNEL_HEAPSIZE. * Kernel heap. Size determined by
* CONFIG_MM_KERNEL_HEAPSIZE.
* User heap. Extends to the end of SRAM. * User heap. Extends to the end of SRAM.
* *
****************************************************************************/ ****************************************************************************/