Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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.

+4
+1
include/sound/sof/ext_manifest.h
··· 60 60 SOF_EXT_MAN_ELEM_FW_VERSION = 0, 61 61 SOF_EXT_MAN_ELEM_WINDOW = 1, 62 62 SOF_EXT_MAN_ELEM_CC_VERSION = 2, 63 + SOF_EXT_MAN_ELEM_PROBE_INFO = 3, 63 64 SOF_EXT_MAN_ELEM_DBG_ABI = 4, 64 65 SOF_EXT_MAN_ELEM_CONFIG_DATA = 5, /**< ABI3.17 */ 65 66 SOF_EXT_MAN_ELEM_PLATFORM_CONFIG_DATA = 6,
+3
sound/soc/sof/ipc3-loader.c
··· 193 193 case SOF_EXT_MAN_ELEM_CC_VERSION: 194 194 ret = ipc3_fw_ext_man_get_cc_info(sdev, elem_hdr); 195 195 break; 196 + case SOF_EXT_MAN_ELEM_PROBE_INFO: 197 + dev_dbg(sdev->dev, "Probe info (not parsed)\n"); 198 + break; 196 199 case SOF_EXT_MAN_ELEM_DBG_ABI: 197 200 ret = ipc3_fw_ext_man_get_dbg_abi_info(sdev, elem_hdr); 198 201 break;