[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 <malchev@google.com>
This commit is contained in:
Chris Fries
2010-12-02 14:22:02 -06:00
committed by Iliyan Malchev
parent 4e6feb548e
commit 66feb38823

View 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)) {