Skip to content

Commit 83e367c

Browse files
ujfalusibroonie
authored andcommitted
ASoC: SOF: ipc3-loader: 'Handle' PROBE_INFO ext_manifest type when parsing
Every time when the firmware is loaded we see the following printed in info level: unknown sof_ext_man header type 3 size 0x30 This is the PROBE_INFO element, which is not parsed, but it is not something that we should treat as surprise, aka unknown type. Add an empty case with a debug print to 'handle' this ext_manifest type and silence the confusing print in kernel log. Signed-off-by: Peter Ujfalusi <[email protected]> Reviewed-by: Pierre-Louis Bossart <[email protected]> Reviewed-by: Bard Liao <[email protected]> Reviewed-by: Liam Girdwood <[email protected]> Link: https://patch.msgid.link/[email protected] Signed-off-by: Mark Brown <[email protected]>
1 parent 7f4eb76 commit 83e367c

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

sound/soc/sof/ipc3-loader.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -193,6 +193,9 @@ static size_t sof_ipc3_fw_parse_ext_man(struct snd_sof_dev *sdev)
193193
case SOF_EXT_MAN_ELEM_CC_VERSION:
194194
ret = ipc3_fw_ext_man_get_cc_info(sdev, elem_hdr);
195195
break;
196+
case SOF_EXT_MAN_ELEM_PROBE_INFO:
197+
dev_dbg(sdev->dev, "Probe info (not parsed)\n");
198+
break;
196199
case SOF_EXT_MAN_ELEM_DBG_ABI:
197200
ret = ipc3_fw_ext_man_get_dbg_abi_info(sdev, elem_hdr);
198201
break;

0 commit comments

Comments
 (0)