Make internal function static

This commit is contained in:
Jeroen Domburg 2016-12-14 11:44:17 +08:00
parent 6f0a494cae
commit 712f53176d

View File

@ -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 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. 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 dstart=(int)addr; //First word
uint32_t dend=((int)addr)+len-4; //Last word uint32_t dend=((int)addr)+len-4; //Last word
@ -385,8 +385,3 @@ size_t xPortGetMinimumEverFreeHeapSize( void )
} }