mirror of https://github.com/thesofproject/sof.git
Audio: Module adapter: Fix error message typo sinks -> sources
This patch fixes a confusing error message typo in module_adapter.c. Signed-off-by: Seppo Ingalsuo <seppo.ingalsuo@linux.intel.com>
This commit is contained in:
parent
f9afd6ac9d
commit
405d48dbea
|
@ -1055,7 +1055,7 @@ static int module_adapter_audio_stream_type_copy(struct comp_dev *dev)
|
|||
}
|
||||
num_input_buffers = i;
|
||||
if (num_input_buffers > mod->max_sources) {
|
||||
comp_err(dev, "Invalid number of sinks %d\n", num_input_buffers);
|
||||
comp_err(dev, "Invalid number of sources %d\n", num_input_buffers);
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue