summaryrefslogtreecommitdiffstats
path: root/sound/soc/dwc
diff options
context:
space:
mode:
authorMark Brown <broonie@kernel.org>2023-05-12 13:14:20 +0900
committerMark Brown <broonie@kernel.org>2023-05-15 19:55:52 +0900
commit1946dda47c8807517ccaa8caf8ee7de3498db531 (patch)
tree384bc3a6ca4499c56c60326a3de72c03b796d438 /sound/soc/dwc
parent7590c6a897c51df5f55779ec80542794982d6631 (diff)
parentf63550e2b165208a2f382afcaf5551df9569e1d4 (diff)
downloadlinux-stable-1946dda47c8807517ccaa8caf8ee7de3498db531.tar.gz
linux-stable-1946dda47c8807517ccaa8caf8ee7de3498db531.tar.bz2
linux-stable-1946dda47c8807517ccaa8caf8ee7de3498db531.zip
ASoC: Merge up fixes for CI
Avoid tripping over fixed issues in CI.
Diffstat (limited to 'sound/soc/dwc')
-rw-r--r--sound/soc/dwc/dwc-i2s.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/dwc/dwc-i2s.c b/sound/soc/dwc/dwc-i2s.c
index c5ba88e050e7..dd5d8d77bdc9 100644
--- a/sound/soc/dwc/dwc-i2s.c
+++ b/sound/soc/dwc/dwc-i2s.c
@@ -133,13 +133,13 @@ static irqreturn_t i2s_irq_handler(int irq, void *dev_id)
/* Error Handling: TX */
if (isr[i] & ISR_TXFO) {
- dev_err(dev->dev, "TX overrun (ch_id=%d)\n", i);
+ dev_err_ratelimited(dev->dev, "TX overrun (ch_id=%d)\n", i);
irq_valid = true;
}
/* Error Handling: TX */
if (isr[i] & ISR_RXFO) {
- dev_err(dev->dev, "RX overrun (ch_id=%d)\n", i);
+ dev_err_ratelimited(dev->dev, "RX overrun (ch_id=%d)\n", i);
irq_valid = true;
}
}