summaryrefslogtreecommitdiff
path: root/nuttx/arch/mips/src/common
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/arch/mips/src/common')
-rw-r--r--nuttx/arch/mips/src/common/up_allocateheap.c4
-rw-r--r--nuttx/arch/mips/src/common/up_internal.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/nuttx/arch/mips/src/common/up_allocateheap.c b/nuttx/arch/mips/src/common/up_allocateheap.c
index b8c449ff1..f6dc51511 100644
--- a/nuttx/arch/mips/src/common/up_allocateheap.c
+++ b/nuttx/arch/mips/src/common/up_allocateheap.c
@@ -82,6 +82,6 @@
void up_allocate_heap(FAR void **heap_start, size_t *heap_size)
{
up_ledon(LED_HEAPALLOCATE);
- *heap_start = (FAR void*)g_heapbase;
- *heap_size = CONFIG_DRAM_END - g_heapbase;
+ *heap_start = (FAR void*)g_idle_topstack;
+ *heap_size = CONFIG_DRAM_END - g_idle_topstack;
}
diff --git a/nuttx/arch/mips/src/common/up_internal.h b/nuttx/arch/mips/src/common/up_internal.h
index 927538dea..1950a74e6 100644
--- a/nuttx/arch/mips/src/common/up_internal.h
+++ b/nuttx/arch/mips/src/common/up_internal.h
@@ -138,7 +138,7 @@ extern volatile uint32_t *current_regs;
* of the heap is CONFIG_DRAM_END
*/
-extern uint32_t g_heapbase;
+extern uint32_t g_idle_topstack;
/* Address of the saved user stack pointer */