Skip to content

Commit 722b31f

Browse files
author
Jyri Sarha
committed
ASoC: SOF: ipc4-topology: Change struct sof_ipc4_mod_init_ext_dp_memory_data
Change struct sof_ipc4_mod_init_ext_dp_memory_data to what is required for the SOF FW userspace DP processing. The earlier version of the firmware (v2.14) did not use the contents of the struct for anything, and if it receives a struct that is larger than the original, the extra words are simply ignored, so there should not be any problem in changing the struct. The following FW versions will expect larger struct and ignore anything that is smaller. Signed-off-by: Jyri Sarha <jyri.sarha@linux.intel.com>
1 parent 6a67501 commit 722b31f

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

include/sound/sof/ipc4/header.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -690,9 +690,9 @@ enum sof_ipc4_mod_init_ext_obj_id {
690690

691691
/* DP module memory configuration data object for ext_init object array */
692692
struct sof_ipc4_mod_init_ext_dp_memory_data {
693-
u32 domain_id; /* userspace domain ID */
694-
u32 stack_bytes; /* stack size in bytes, 0 means default size */
695-
u32 heap_bytes; /* stack size in bytes, 0 means default size */
693+
u32 domain_id; /* userspace domain ID */
694+
u32 stack_bytes; /* required stack size in bytes */
695+
u32 heap_bytes; /* required heap size in bytes */
696696
} __packed __aligned(4);
697697

698698
/*

0 commit comments

Comments
 (0)