aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Ujfalusi <[email protected]>2022-12-21 12:23:28 +0200
committerMark Brown <[email protected]>2022-12-25 23:32:39 +0000
commit8a33863a0e287b17a5c637f231f31ff631348f8f (patch)
treebf2472612b2c0f59c2b789e85d0ffd3516f456d4
parent8419fd90ee5c9038cb2776fad71fcc9b93f78e11 (diff)
ASoC: SOF: trace: No need to check for op pointer in sof_fw_trace_free()
If the sdev->fw_trace_is_supported is true then we must have the fw_tracing ops set, no need to check again. Signed-off-by: Peter Ujfalusi <[email protected]> Reviewed-by: Pierre-Louis Bossart <[email protected]> Reviewed-by: Ranjani Sridharan <[email protected]> Reviewed-by: Bard Liao <[email protected]> Reviewed-by: Rander Wang <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Mark Brown <[email protected]>
-rw-r--r--sound/soc/sof/trace.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/sof/trace.c b/sound/soc/sof/trace.c
index 0e92269c4a00..b2ab51e5214a 100644
--- a/sound/soc/sof/trace.c
+++ b/sound/soc/sof/trace.c
@@ -20,7 +20,7 @@ int sof_fw_trace_init(struct snd_sof_dev *sdev)
void sof_fw_trace_free(struct snd_sof_dev *sdev)
{
- if (!sdev->fw_trace_is_supported || !sdev->ipc->ops->fw_tracing)
+ if (!sdev->fw_trace_is_supported)
return;
if (sdev->ipc->ops->fw_tracing->free)