mirror of https://github.com/thesofproject/sof.git
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:
parent
955c7c9009
commit
1ef769dd87
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue