Commit 717dedb1 authored by Kai Vehmanen's avatar Kai Vehmanen Committed by Mark Brown

ASoC: SOF: Intel: hda: remove misleading error trace from IRQ thread

Downgrade "nothing to do in IRQ thread" message from error to a debug
message in the IPC interrupt handler thread.

The spurious wake-up can happen if a HDA stream interrupt is
raised while the IPC interrupt thread is running. IPC functionality
is not impacted by this condition, so debug is a more appropriate
trace level.
Signed-off-by: default avatarKai Vehmanen <kai.vehmanen@linux.intel.com>
Signed-off-by: default avatarPierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Link: https://lore.kernel.org/r/20190722141402.7194-21-pierre-louis.bossart@linux.intel.comSigned-off-by: default avatarMark Brown <broonie@kernel.org>
parent 8201f11a
...@@ -101,8 +101,8 @@ static irqreturn_t cnl_ipc_irq_thread(int irq, void *context) ...@@ -101,8 +101,8 @@ static irqreturn_t cnl_ipc_irq_thread(int irq, void *context)
/* /*
* This interrupt is not shared so no need to return IRQ_NONE. * This interrupt is not shared so no need to return IRQ_NONE.
*/ */
dev_err_ratelimited(sdev->dev, dev_dbg_ratelimited(sdev->dev,
"error: nothing to do in IRQ thread\n"); "nothing to do in IPC IRQ thread\n");
} }
/* re-enable IPC interrupt */ /* re-enable IPC interrupt */
......
...@@ -224,8 +224,8 @@ irqreturn_t hda_dsp_ipc_irq_thread(int irq, void *context) ...@@ -224,8 +224,8 @@ irqreturn_t hda_dsp_ipc_irq_thread(int irq, void *context)
/* /*
* This interrupt is not shared so no need to return IRQ_NONE. * This interrupt is not shared so no need to return IRQ_NONE.
*/ */
dev_err_ratelimited(sdev->dev, dev_dbg_ratelimited(sdev->dev,
"error: nothing to do in IRQ thread\n"); "nothing to do in IPC IRQ thread\n");
} }
/* re-enable IPC interrupt */ /* re-enable IPC interrupt */
......
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