Commit 59fdde1d authored by Peter Ujfalusi's avatar Peter Ujfalusi Committed by Mark Brown

ASoC: SOF: ipc: Clarify the parameter name for ipc_trace_message()

ipc_trace_message() receives the type not the ID.
Use the same naming as the ipc_stream_message() function: msg_type to
help the reader to follow the code.
Signed-off-by: default avatarPeter Ujfalusi <peter.ujfalusi@linux.intel.com>
Reviewed-by: default avatarKai Vehmanen <kai.vehmanen@linux.intel.com>
Reviewed-by: default avatarPierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Reviewed-by: default avatarGuennadi Liakhovetski <guennadi.liakhovetski@linux.intel.com>
Reviewed-by: default avatarBard Liao <bard.liao@intel.com>
Link: https://lore.kernel.org/r/20210917085823.27222-2-peter.ujfalusi@linux.intel.comSigned-off-by: default avatarMark Brown <broonie@kernel.org>
parent f1291f41
...@@ -18,7 +18,7 @@ ...@@ -18,7 +18,7 @@
#include "sof-audio.h" #include "sof-audio.h"
#include "ops.h" #include "ops.h"
static void ipc_trace_message(struct snd_sof_dev *sdev, u32 msg_id); static void ipc_trace_message(struct snd_sof_dev *sdev, u32 msg_type);
static void ipc_stream_message(struct snd_sof_dev *sdev, u32 msg_cmd); static void ipc_stream_message(struct snd_sof_dev *sdev, u32 msg_cmd);
/* /*
...@@ -477,19 +477,18 @@ EXPORT_SYMBOL(snd_sof_ipc_msgs_rx); ...@@ -477,19 +477,18 @@ EXPORT_SYMBOL(snd_sof_ipc_msgs_rx);
* IPC trace mechanism. * IPC trace mechanism.
*/ */
static void ipc_trace_message(struct snd_sof_dev *sdev, u32 msg_id) static void ipc_trace_message(struct snd_sof_dev *sdev, u32 msg_type)
{ {
struct sof_ipc_dma_trace_posn posn; struct sof_ipc_dma_trace_posn posn;
switch (msg_id) { switch (msg_type) {
case SOF_IPC_TRACE_DMA_POSITION: case SOF_IPC_TRACE_DMA_POSITION:
/* read back full message */ /* read back full message */
snd_sof_ipc_msg_data(sdev, NULL, &posn, sizeof(posn)); snd_sof_ipc_msg_data(sdev, NULL, &posn, sizeof(posn));
snd_sof_trace_update_pos(sdev, &posn); snd_sof_trace_update_pos(sdev, &posn);
break; break;
default: default:
dev_err(sdev->dev, "error: unhandled trace message %x\n", dev_err(sdev->dev, "error: unhandled trace message %x\n", msg_type);
msg_id);
break; break;
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment