Audio: EQ FIR: Improve info trace message

Add determined stream channels count to info trace to better
understand possible error in coefficients blob initialization.

Signed-off-by: Seppo Ingalsuo <seppo.ingalsuo@linux.intel.com>
This commit is contained in:
Seppo Ingalsuo 2023-01-19 19:57:26 +02:00 committed by Liam Girdwood
parent e2265794f6
commit 1dc316226d
1 changed files with 2 additions and 3 deletions

View File

@ -178,9 +178,8 @@ static int eq_fir_init_coef(struct comp_dev *dev, struct sof_eq_fir_config *conf
int j;
int s;
comp_info(dev, "eq_fir_init_coef(), response assign for %u channels, %u responses",
config->channels_in_config,
config->number_of_responses);
comp_info(dev, "eq_fir_init_coef(): %u responses, %u channels, stream %d channels",
config->number_of_responses, config->channels_in_config, nch);
/* Sanity checks */
if (nch > PLATFORM_MAX_CHANNELS ||