mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2025-01-01 19:34:35 +08:00
ASoC: SOF: ipc4: Dump the notification payload
Now that we have notifications with payload (kcontrol change notifications), it is time to add the payload dump on the rx path as well. Reviewed-by: Seppo Ingalsuo <seppo.ingalsuo@linux.intel.com> Reviewed-by: Ranjani Sridharan <ranjani.sridharan@linux.intel.com> Signed-off-by: Peter Ujfalusi <peter.ujfalusi@linux.intel.com> Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com> Link: https://lore.kernel.org/r/20231012191850.147140-4-pierre-louis.bossart@linux.intel.com Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
576a0b71b5
commit
a2d952ba90
@ -666,6 +666,10 @@ static void sof_ipc4_rx_msg(struct snd_sof_dev *sdev)
|
||||
sof_ipc4_log_header(sdev->dev, "ipc rx done ", ipc4_msg, true);
|
||||
|
||||
if (data_size) {
|
||||
if (sof_debug_check_flag(SOF_DBG_DUMP_IPC_MESSAGE_PAYLOAD))
|
||||
sof_ipc4_dump_payload(sdev, ipc4_msg->data_ptr,
|
||||
ipc4_msg->data_size);
|
||||
|
||||
kfree(ipc4_msg->data_ptr);
|
||||
ipc4_msg->data_ptr = NULL;
|
||||
ipc4_msg->data_size = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user