apl: memory: fix heap system base.

Text base is from TEXT_BASE and not TEXT_START

Signed-off-by: Liam Girdwood <liam.r.girdwood@linux.intel.com>
This commit is contained in:
Liam Girdwood 2018-02-27 16:40:52 +00:00
parent 041423bfe3
commit 2fb2a77e2c
1 changed files with 1 additions and 1 deletions

View File

@ -178,7 +178,7 @@
/* Heap configuration */ /* Heap configuration */
#define HEAP_SYSTEM_BASE \ #define HEAP_SYSTEM_BASE \
(REEF_TEXT_START + REEF_TEXT_SIZE + \ (REEF_TEXT_BASE + REEF_TEXT_SIZE +\
REEF_DATA_SIZE + REEF_BSS_DATA_SIZE) REEF_DATA_SIZE + REEF_BSS_DATA_SIZE)
#define HEAP_SYSTEM_SIZE 0x2000 #define HEAP_SYSTEM_SIZE 0x2000