Message ID | 1645792943-24845-1-git-send-email-quic_srivasam@quicinc.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 5a5d2316a5292222383d4e3589b8f5144f7c9b49 |
Headers | show |
Series | ASoC: qcom: lpass-platform: Update warning print to control excess logging | expand |
On Fri, 25 Feb 2022 18:12:23 +0530, Srinivasa Rao Mandadapu wrote: > Update dev_warn to dev_warn_ratelimit to control excess xrun logging > in lpass platform driver. > > Applied to https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-next Thanks! [1/1] ASoC: qcom: lpass-platform: Update warning print to control excess logging commit: 5a5d2316a5292222383d4e3589b8f5144f7c9b49 All being well this means that it will be integrated into the linux-next tree (usually sometime in the next 24 hours) and sent to Linus during the next merge window (or sooner if it is a bug fix), however if problems are discovered then the patch may be dropped or reverted. You may get further e-mails resulting from automated or manual testing and review of the tree, please engage with people reporting problems and send followup patches addressing any issues that are reported if needed. If any updates are required or you are submitting further changes they should be sent as incremental updates against current git, existing patches will not be replaced. Please add any relevant lists and maintainers to the CCs when replying to this mail. Thanks, Mark
diff --git a/sound/soc/qcom/lpass-platform.c b/sound/soc/qcom/lpass-platform.c index b3af971..1ce0878 100644 --- a/sound/soc/qcom/lpass-platform.c +++ b/sound/soc/qcom/lpass-platform.c @@ -986,7 +986,8 @@ static irqreturn_t lpass_dma_interrupt_handler( "error writing to irqclear reg: %d\n", rv); return IRQ_NONE; } - dev_warn(soc_runtime->dev, "xrun warning\n"); + dev_warn_ratelimited(soc_runtime->dev, "xrun warning\n"); + snd_pcm_stop_xrun(substream); ret = IRQ_HANDLED; }