From 712f53176dda462b0d3d44caebba6d6458fe4ee4 Mon Sep 17 00:00:00 2001 From: Jeroen Domburg Date: Wed, 14 Dec 2016 11:44:17 +0800 Subject: [PATCH] Make internal function static --- components/esp32/heap_alloc_caps.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/components/esp32/heap_alloc_caps.c b/components/esp32/heap_alloc_caps.c index a77d372b4f..7bb3b40879 100644 --- a/components/esp32/heap_alloc_caps.c +++ b/components/esp32/heap_alloc_caps.c @@ -249,7 +249,7 @@ void heap_alloc_caps_init() { have such a block in front of it, work. We may do this later, if/when there is demand for it. For now, a simple pointer is used. */ -void *dram_alloc_to_iram_addr(void *addr, size_t len) +static void *dram_alloc_to_iram_addr(void *addr, size_t len) { uint32_t dstart=(int)addr; //First word uint32_t dend=((int)addr)+len-4; //Last word @@ -385,8 +385,3 @@ size_t xPortGetMinimumEverFreeHeapSize( void ) } - - - - - -- 2.50.1