From 87ae3505f62c24fe5c2183aadc9e48e4b9698211 Mon Sep 17 00:00:00 2001 From: "fy.tsuo" Date: Thu, 10 Jun 2021 08:51:40 +0800 Subject: [PATCH] ipc: abstraction: added SOF_COMP_NONE in comp_specific_builder. For non-specific type of component, the comp builder will adopt the process type. Signed-off-by: fy.tsuo --- src/ipc/ipc3/helper.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ipc/ipc3/helper.c b/src/ipc/ipc3/helper.c index 8db27ccb8..3052f5d3c 100644 --- a/src/ipc/ipc3/helper.c +++ b/src/ipc/ipc3/helper.c @@ -388,6 +388,7 @@ static void comp_specific_builder(struct sof_ipc_comp *comp, case SOF_COMP_DCBLOCK: case SOF_COMP_SMART_AMP: case SOF_COMP_CODEC_ADAPTOR: + case SOF_COMP_NONE: config->process.type = proc->type; config->process.size = proc->size; config->process.data = proc->data;