[ARM] tegra: dma: Remove spam log
authorChris Fries <C.Fries@motorola.com>
Thu, 2 Dec 2010 20:22:02 +0000 (14:22 -0600)
committerIliyan Malchev <malchev@google.com>
Thu, 2 Dec 2010 20:55:29 +0000 (12:55 -0800)
"Interrupt during enqueue" happens periodically when the
DMA is almost starving.  This happens under certain not-
uncommon scenarios.

Signed-off-by: Iliyan Malchev <malchev@google.com>
arch/arm/mach-tegra/dma.c

index 97335c0f93fbd46b754f9c991a14fdfdb729b142..0ac303ebf84ceb191a704516430360dd0bc9cd86 100644 (file)
@@ -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)) {