From 8c5044fa4a2ed03de7b1d56542fe51f5068753bc Mon Sep 17 00:00:00 2001 From: Alin Jerpelea Date: Tue, 26 Jan 2021 09:57:27 +0100 Subject: [PATCH] include: nuttx: mm: nxstyle fixes Nxstyle fixes to pass CI Signed-off-by: Alin Jerpelea --- include/nuttx/mm/gran.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/nuttx/mm/gran.h b/include/nuttx/mm/gran.h index 1bbccb2973..a049a05b64 100644 --- a/include/nuttx/mm/gran.h +++ b/include/nuttx/mm/gran.h @@ -53,6 +53,7 @@ ****************************************************************************/ /* Configuration ************************************************************/ + /* CONFIG_GRAN - Enable granule allocator support * CONFIG_GRAN_INTR - Normally mutual exclusive access to granule allocator * data is assured using a semaphore. If this option is set then, instead, @@ -110,7 +111,7 @@ extern "C" * attribute to position a DMA heap in memory (logic in the linker script * would assign the section .dmaheap to the DMA memory. * - * FAR uint32_t g_dmaheap[DMAHEAP_SIZE] __attribute__((section(.dmaheap))); + * FAR uint32_t g_dmaheap[DMAHEAP_SIZE] __attribute__((section(.dmaheap))); * * The heap is created by calling gran_initialize. Here the granule size * is set to 64 bytes and the alignment to 16 bytes: