projects
/
GitHub
/
moto-9609
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
397321f
)
dma: edma: Set debug level to debugging messages
author
Ezequiel Garcia
<ezequiel.garcia@free-electrons.com>
Fri, 13 Dec 2013 14:06:18 +0000
(11:06 -0300)
committer
Vinod Koul
<vinod.koul@intel.com>
Wed, 18 Dec 2013 16:14:02 +0000
(21:44 +0530)
The channel allocated/released messages are very spammy and not really
interesting to users. Change them to "debug" level.
Signed-off-by: Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
Acked-by: Matt Porter <mporter@linaro.org>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
drivers/dma/edma.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/dma/edma.c
b/drivers/dma/edma.c
index 2539ea0cbc6394f918fb849ffd3c6f6ca73f33a0..cd8da451d1995fef8b6d076005b17ad1a17b44d1 100644
(file)
--- a/
drivers/dma/edma.c
+++ b/
drivers/dma/edma.c
@@
-699,8
+699,8
@@
static int edma_alloc_chan_resources(struct dma_chan *chan)
echan->alloced = true;
echan->slot[0] = echan->ch_num;
- dev_
info
(dev, "allocated channel for %u:%u\n",
-
EDMA_CTLR(echan->ch_num), EDMA_CHAN_SLOT(echan->ch_num));
+ dev_
dbg
(dev, "allocated channel for %u:%u\n",
+ EDMA_CTLR(echan->ch_num), EDMA_CHAN_SLOT(echan->ch_num));
return 0;
@@
-736,7
+736,7
@@
static void edma_free_chan_resources(struct dma_chan *chan)
echan->alloced = false;
}
- dev_
info
(dev, "freeing channel for %u\n", echan->ch_num);
+ dev_
dbg
(dev, "freeing channel for %u\n", echan->ch_num);
}
/* Send pending descriptor to hardware */