summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorJyri Sarha <jyri.sarha@linux.intel.com>2026-07-30 13:41:40 +0300
committerMark Brown <broonie@kernel.org>2026-07-31 15:44:36 +0100
commite5b0daa6f9744967c04645945c3a5efbc43f3c92 (patch)
tree8954d9ed38a17693d7c987a24ef394102b483156 /include
parent0244c162d1a5e4aef501feeafbe93ac439a330e6 (diff)
ASoC: SOF: ipc4-topology: Fix sof_ipc4_mod_init_ext_dp_memory_data comments
Fix a copy-paste error in struct sof_ipc4_mod_init_ext_dp_memory_data datamember comments. And while at it, drop the overly specific notes on the datamember values. The values are coming from topology and and what to do with them is decided in SOF FW. Its a bad idea to try to document their meaning in detail here. The Linux driver is only passing the values. Signed-off-by: Jyri Sarha <jyri.sarha@linux.intel.com> Reviewed-by: Liam Girdwood <liam.r.girdwood@intel.com> Signed-off-by: Peter Ujfalusi <peter.ujfalusi@linux.intel.com> Link: https://patch.msgid.link/20260730104141.14817-6-peter.ujfalusi@linux.intel.com Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'include')
-rw-r--r--include/sound/sof/ipc4/header.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/sound/sof/ipc4/header.h b/include/sound/sof/ipc4/header.h
index 6fbf62c4075c..b49a74007bd7 100644
--- a/include/sound/sof/ipc4/header.h
+++ b/include/sound/sof/ipc4/header.h
@@ -660,9 +660,9 @@ enum sof_ipc4_mod_init_ext_obj_id {
/* DP module memory configuration data object for object array */
struct sof_ipc4_mod_init_ext_dp_memory_data {
- u32 domain_id; /* userspace domain ID */
- u32 stack_bytes; /* stack size in bytes, 0 means default size */
- u32 heap_bytes; /* stack size in bytes, 0 means default size */
+ u32 domain_id; /* userspace domain ID */
+ u32 stack_bytes; /* required stack size in bytes */
+ u32 heap_bytes; /* required heap size in bytes */
} __packed __aligned(4);
/*
@@ -732,7 +732,7 @@ enum sof_ipc4_glb_pipe_ext_obj_id {
struct sof_ipc4_glb_pipe_ext_obj_memory_data {
u32 domain_id; /* userspace domain ID */
u32 stack_bytes; /* stack size in bytes */
- u32 heap_bytes; /* heap size in bytes */
+ u32 heap_bytes; /* heap size in bytes */
} __packed __aligned(4);
/** @}*/