From: Peter Ujfalusi Date: Fri, 6 May 2022 13:02:29 +0000 (+0300) Subject: ASoC: SOF: trace: The dtrace is only available with SOF_IPC X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=e813526e5535ab009e2550e1da63abf297e1af68;p=linux.git ASoC: SOF: trace: The dtrace is only available with SOF_IPC Currently the dtrace only supported with SOF_IPC. Signed-off-by: Peter Ujfalusi Reviewed-by: Bard Liao Reviewed-by: Rander Wang Reviewed-by: Pierre-Louis Bossart Reviewed-by: Ranjani Sridharan Link: https://lore.kernel.org/r/20220506130229.23354-1-peter.ujfalusi@linux.intel.com Signed-off-by: Mark Brown --- diff --git a/sound/soc/sof/trace.c b/sound/soc/sof/trace.c index ba6361b5d64b2..5d171bf8a5ea1 100644 --- a/sound/soc/sof/trace.c +++ b/sound/soc/sof/trace.c @@ -457,6 +457,10 @@ int snd_sof_init_trace(struct snd_sof_dev *sdev) { int ret; + /* dtrace is only supported with SOF_IPC */ + if (sdev->pdata->ipc_type != SOF_IPC) + sdev->dtrace_is_supported = false; + if (!sdev->dtrace_is_supported) return 0;