mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-08 15:14:30 -04:00
ASoC: codecs: lpass-va-macro: warn on unknown version
Warn the users if the driver doesn't know the codec version. This helps in debugging the issues with other codec not detecting the correct version. va_macro 3370000.codec: Unknown VA Codec version, ID: 00 / 0f / 00 Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> Link: https://patch.msgid.link/20240803-codec-version-v1-2-bc29baa5e417@linaro.org Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
committed by
Mark Brown
parent
49f6202ce9
commit
a9a7a2d807
@@ -1485,6 +1485,10 @@ static void va_macro_set_lpass_codec_version(struct va_macro *va)
|
||||
if ((core_id_0 == 0x02) && (core_id_1 == 0x0F) && (core_id_2 == 0x80 || core_id_2 == 0x81))
|
||||
version = LPASS_CODEC_VERSION_2_8;
|
||||
|
||||
if (version == LPASS_CODEC_VERSION_UNKNOWN)
|
||||
dev_warn(va->dev, "Unknown Codec version, ID: %02x / %02x / %02x\n",
|
||||
core_id_0, core_id_1, core_id_2);
|
||||
|
||||
lpass_macro_set_codec_version(version);
|
||||
|
||||
dev_dbg(va->dev, "LPASS Codec Version %s\n", lpass_macro_get_codec_version_string(version));
|
||||
|
||||
Reference in New Issue
Block a user