From 66feb38823706e829aae1df59afb506e26fd58db Mon Sep 17 00:00:00 2001 From: Chris Fries Date: Thu, 2 Dec 2010 14:22:02 -0600 Subject: [PATCH] [ARM] tegra: dma: Remove spam log "Interrupt during enqueue" happens periodically when the DMA is almost starving. This happens under certain not- uncommon scenarios. Signed-off-by: Iliyan Malchev --- arch/arm/mach-tegra/dma.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/mach-tegra/dma.c b/arch/arm/mach-tegra/dma.c index 97335c0f93fb..0ac303ebf84c 100644 --- a/arch/arm/mach-tegra/dma.c +++ b/arch/arm/mach-tegra/dma.c @@ -729,7 +729,7 @@ static void handle_continuous_sngl_dma(struct tegra_dma_channel *ch) */ next_req = list_entry(req->node.next, typeof(*next_req), node); if (next_req->status != TEGRA_DMA_REQ_INFLIGHT) { - pr_warning("%s: interrupt during enqueue\n", __func__); + pr_debug("%s: interrupt during enqueue\n", __func__); tegra_dma_stop(ch); tegra_dma_update_hw(ch, next_req); } else if (!list_is_last(&next_req->node, &ch->list)) { -- 2.34.1