Skip to content

Commit 4bc8362

Browse files
committed
dai: only process DAI config for comps on cores that enabled
DAI config IPC is propagated to all DAI comps scheduled on all cores but it should only be done if the secondary core is enabled. Signed-off-by: Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
1 parent e0ebb33 commit 4bc8362

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ipc/ipc3/dai.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ int ipc_comp_dai_config(struct ipc *ipc, struct ipc_config_dai *common_config,
165165
if (icd->type != COMP_TYPE_COMPONENT)
166166
continue;
167167

168-
if (!cpu_is_me(icd->core)) {
168+
if (!cpu_is_me(icd->core) && cpu_is_core_enabled(icd->core)) {
169169
comp_on_core[icd->core] = true;
170170
ret = 0;
171171
continue;

0 commit comments

Comments
 (0)