[Sound-open-firmware] [PATCH 2/3] apl: memory: fix heap system base.

Liam Girdwood liam.r.girdwood at linux.intel.com
Tue Feb 27 17:42:06 CET 2018


Text base is from TEXT_BASE and not TEXT_START

Signed-off-by: Liam Girdwood <liam.r.girdwood at linux.intel.com>
---
 src/platform/apollolake/include/platform/memory.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/platform/apollolake/include/platform/memory.h b/src/platform/apollolake/include/platform/memory.h
index 157be82..5f35927 100644
--- a/src/platform/apollolake/include/platform/memory.h
+++ b/src/platform/apollolake/include/platform/memory.h
@@ -178,7 +178,7 @@
 
 /* Heap configuration */
 #define HEAP_SYSTEM_BASE \
-	(REEF_TEXT_START + REEF_TEXT_SIZE + \
+	(REEF_TEXT_BASE + REEF_TEXT_SIZE +\
 	REEF_DATA_SIZE + REEF_BSS_DATA_SIZE)
 #define HEAP_SYSTEM_SIZE		0x2000
 
-- 
2.14.1



More information about the Sound-open-firmware mailing list