ASoC: Intel: Skylake: Print module type instead of id

When we are printing module params, we were actually printing module id
instead of type, but debug message was saying that number we get is type.
So print module type, as it is useful when debugging paths, but also
keep printing module id, as it is used in all other logs.

Signed-off-by: Amadeusz Sławiński <amadeuszx.slawinski@intel.com>
Link: https://lore.kernel.org/r/20190827141712.21015-5-amadeuszx.slawinski@linux.intel.com
Reviewed-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
Amadeusz Sławiński 2019-08-27 16:17:10 +02:00 committed by Mark Brown
parent a325c7bc3a
commit 0cc33cecb4
No known key found for this signature in database
GPG key ID: 24D68B725D5487D0

View file

@ -867,8 +867,9 @@ static int skl_set_module_format(struct skl_dev *skl,
}
dev_dbg(skl->dev, "Module type=%d config size: %d bytes\n",
module_config->id.module_id, param_size);
dev_dbg(skl->dev, "Module type=%d id=%d config size: %d bytes\n",
module_config->m_type, module_config->id.module_id,
param_size);
print_hex_dump_debug("Module params:", DUMP_PREFIX_OFFSET, 8, 4,
*param_data, param_size, false);
return 0;