zephyr: apl: further reduce heap size

Recent changes increased the size of various sections, breaking
linkage again. We need to make the linker calculate the heap size
automatically but until that is ready, reduce the heap size further
to fix the current breakage.

Signed-off-by: Guennadi Liakhovetski <guennadi.liakhovetski@linux.intel.com>
This commit is contained in:
Guennadi Liakhovetski 2021-10-20 16:23:39 +02:00 committed by Liam Girdwood
parent 955c7c9009
commit 1ef769dd87
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@ __section(".heap_mem") static uint8_t __aligned(64) heapmem[HEAPMEM_SIZE];
#if (CONFIG_HP_MEMORY_BANKS < 16)
/* e.g. APL */
#if defined __XCC__
#define HEAPMEM_SIZE 0x28000
#define HEAPMEM_SIZE 0x20000
#else
#define HEAPMEM_SIZE 0x30000
#endif