Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/platform/ace30/include/platform/lib/memory.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
#define SRAM_STREAM_SIZE 0x1000

/* Stack configuration */
#define SOF_STACK_SIZE 0x1000
#define SOF_STACK_SIZE (CONFIG_SOF_STACK_SIZE)

#define PLATFORM_HEAP_SYSTEM CONFIG_CORE_COUNT /* one per core */
#define PLATFORM_HEAP_SYSTEM_RUNTIME CONFIG_CORE_COUNT /* one per core */
Expand Down
2 changes: 1 addition & 1 deletion src/platform/lunarlake/include/platform/lib/memory.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
#define SRAM_STREAM_SIZE 0x1000

/* Stack configuration */
#define SOF_STACK_SIZE 0x1000
#define SOF_STACK_SIZE (CONFIG_SOF_STACK_SIZE)

#define PLATFORM_HEAP_SYSTEM CONFIG_CORE_COUNT /* one per core */
#define PLATFORM_HEAP_SYSTEM_RUNTIME CONFIG_CORE_COUNT /* one per core */
Expand Down
2 changes: 1 addition & 1 deletion src/platform/meteorlake/include/platform/lib/memory.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
#define SRAM_STREAM_SIZE 0x1000

/* Stack configuration */
#define SOF_STACK_SIZE 0x1000
#define SOF_STACK_SIZE (CONFIG_SOF_STACK_SIZE)

#define PLATFORM_HEAP_SYSTEM CONFIG_CORE_COUNT /* one per core */
#define PLATFORM_HEAP_SYSTEM_RUNTIME CONFIG_CORE_COUNT /* one per core */
Expand Down
Loading