Incorrect trace variable name

Minor debugging issue, when verbose trace is turned on it will not compile
because these variables are incorrect.

Signed-off-by: Curtis Malainey <cujomalainey@google.com>
This commit is contained in:
Curtis Malainey 2017-08-03 13:08:47 -07:00 committed by Liam Girdwood
parent 71a35c317b
commit 974a577c23
1 changed files with 2 additions and 2 deletions

View File

@ -323,9 +323,9 @@ static int eq_fir_cmd(struct comp_dev *dev, int cmd, void *data)
fir_update, PLATFORM_MAX_CHANNELS);
/* Print trace information */
tracev_value(iir_update->stream_max_channels);
tracev_value(fir_update->stream_max_channels);
for (i = 0; i < fir_update->stream_max_channels; i++)
tracev_value(iir_update->assign_response[i]);
tracev_value(fir_update->assign_response[i]);
break;
case COMP_CMD_EQ_FIR_CONFIG: