summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Fries <C.Fries@motorola.com>2010-12-02 14:22:02 -0600
committerDan Willemsen <dwillemsen@nvidia.com>2011-11-30 21:36:46 -0800
commit4aee0ad95a6c2e23b83b5c79118c1b8aec2bae62 (patch)
tree20ad3927e0160bc780bdb32a615fba08dd213c94
parent486a1d0dc4713c68c60d11bb03c9a83ff6b83b9f (diff)
[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>
-rw-r--r--arch/arm/mach-tegra/dma.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-tegra/dma.c b/arch/arm/mach-tegra/dma.c
index f995d25bb165..6020871f5ef6 100644
--- a/arch/arm/mach-tegra/dma.c
+++ b/arch/arm/mach-tegra/dma.c
@@ -739,7 +739,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)) {