From: Peter Ujfalusi Date: Fri, 17 Sep 2021 08:51:08 +0000 (+0300) Subject: ASoC: SOF: trace: Omit error print when waking up trace sleepers X-Git-Tag: v5.15~52^2~1^2~15 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=cfacfefd382af3b42905108b54f02820dca225c4;p=platform%2Fkernel%2Flinux-starfive.git ASoC: SOF: trace: Omit error print when waking up trace sleepers Do not print error message from snd_sof_trace_notify_for_error() when possible sleeping trace work is woken up to flush the remaining debug information. This action by itself is not an error, it is just an action we take when an error occurs to make sure that all information have been fed to the userspace (if we have trace in use). Signed-off-by: Peter Ujfalusi Reviewed-by: Ranjani Sridharan Reviewed-by: Pierre-Louis Bossart Link: https://lore.kernel.org/r/20210917085108.25532-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 f72a6e8..58f6ca5 100644 --- a/sound/soc/sof/trace.c +++ b/sound/soc/sof/trace.c @@ -530,7 +530,6 @@ void snd_sof_trace_notify_for_error(struct snd_sof_dev *sdev) return; if (sdev->dtrace_is_enabled) { - dev_err(sdev->dev, "error: waking up any trace sleepers\n"); sdev->dtrace_error = true; wake_up(&sdev->trace_sleep); }