diff options
author | Mark Brown <broonie@kernel.org> | 2024-11-07 21:37:24 +0100 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2024-11-07 21:37:24 +0100 |
commit | fa1a0f3e6ea3fbac8ac35e91a94ff1702094fd62 (patch) | |
tree | b7c33e75730a7146df764bd5f7f114085f3bf24e /sound | |
parent | ASoC: ux500: Remove redundant casts (diff) | |
parent | ASoC: SOF: ipc3-loader: 'Handle' PROBE_INFO ext_manifest type when parsing (diff) | |
download | linux-fa1a0f3e6ea3fbac8ac35e91a94ff1702094fd62.tar.xz linux-fa1a0f3e6ea3fbac8ac35e91a94ff1702094fd62.zip |
ASoC: SOF: ipc3-loader: Handle PROBE_INFO ext_manifest
Merge series from Peter Ujfalusi <peter.ujfalusi@linux.intel.com>:
The PROBE_INFO (ext_manifest type 3) is not used by the kernel, but
at every tiem the firmware is loaded the following is printed in
info level (user visible):
unknown sof_ext_man header type 3 size 0x30
The type is known, but it is not handled, the print is misleading.
Diffstat (limited to 'sound')
-rw-r--r-- | sound/soc/sof/ipc3-loader.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sound/soc/sof/ipc3-loader.c b/sound/soc/sof/ipc3-loader.c index 35b89c2b9d4c..7e9c76d5b2c9 100644 --- a/sound/soc/sof/ipc3-loader.c +++ b/sound/soc/sof/ipc3-loader.c @@ -193,6 +193,9 @@ static size_t sof_ipc3_fw_parse_ext_man(struct snd_sof_dev *sdev) case SOF_EXT_MAN_ELEM_CC_VERSION: ret = ipc3_fw_ext_man_get_cc_info(sdev, elem_hdr); break; + case SOF_EXT_MAN_ELEM_PROBE_INFO: + dev_dbg(sdev->dev, "Probe info (not parsed)\n"); + break; case SOF_EXT_MAN_ELEM_DBG_ABI: ret = ipc3_fw_ext_man_get_dbg_abi_info(sdev, elem_hdr); break; |