mirror of https://github.com/thesofproject/sof.git
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:
parent
041423bfe3
commit
2fb2a77e2c
|
@ -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
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue