diff options
author | Keyon Jie <yang.jie@linux.intel.com> | 2020-09-04 16:27:44 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2020-09-07 15:16:47 +0100 |
commit | 988d941882336b860d5fae1ee6f487eb110fe6d6 (patch) | |
tree | b6260a0b2b95c48b9858d37eccbbc86cd692c789 /sound | |
parent | d2306f4ed181e3bfe91a96a360f9674613c036a6 (diff) | |
download | linux-988d941882336b860d5fae1ee6f487eb110fe6d6.tar.gz linux-988d941882336b860d5fae1ee6f487eb110fe6d6.tar.bz2 linux-988d941882336b860d5fae1ee6f487eb110fe6d6.zip |
ASoC: SOF: topology: make process type optional
As components can be now identified with a UUID based mechanism, the
process type is no longer required. For new DSP components, process and
its component type can be set to SOF_PROCESS_NONE and SOF_COMP_NONE.
Allow this combination in topology load, modify the load time check for
process type to reflect this.
Signed-off-by: Keyon Jie <yang.jie@linux.intel.com>
Reviewed-by: Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
Reviewed-by: Curtis Malainey <curtis@malainey.com>
Signed-off-by: Kai Vehmanen <kai.vehmanen@linux.intel.com>
Link: https://lore.kernel.org/r/20200904132744.1699575-17-kai.vehmanen@linux.intel.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/soc/sof/topology.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/sound/soc/sof/topology.c b/sound/soc/sof/topology.c index 69865df60033..49fae48961a9 100644 --- a/sound/soc/sof/topology.c +++ b/sound/soc/sof/topology.c @@ -2197,12 +2197,6 @@ static int sof_process_load(struct snd_soc_component *scomp, int index, int ret; int i; - if (type == SOF_COMP_NONE) { - dev_err(scomp->dev, "error: invalid process comp type %d\n", - type); - return -EINVAL; - } - /* allocate struct for widget control data sizes and types */ if (widget->num_kcontrols) { wdata = kcalloc(widget->num_kcontrols, |