diff options
author | Ezequiel Garcia <ezequiel.garcia@free-electrons.com> | 2013-12-13 09:06:18 -0500 |
---|---|---|
committer | Vinod Koul <vinod.koul@intel.com> | 2013-12-18 11:14:02 -0500 |
commit | 0e772c672686460c5341fa2914c02c45c2b6a3f3 (patch) | |
tree | 485e234e5681d111c6956261c0fce544c2b27727 /drivers/dma | |
parent | 397321f45d31159c84982978106f3165be44bc2b (diff) |
dma: edma: Set debug level to debugging messages
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>
Diffstat (limited to 'drivers/dma')
-rw-r--r-- | drivers/dma/edma.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/dma/edma.c b/drivers/dma/edma.c index 2539ea0cbc63..cd8da451d199 100644 --- a/drivers/dma/edma.c +++ b/drivers/dma/edma.c | |||
@@ -699,8 +699,8 @@ static int edma_alloc_chan_resources(struct dma_chan *chan) | |||
699 | echan->alloced = true; | 699 | echan->alloced = true; |
700 | echan->slot[0] = echan->ch_num; | 700 | echan->slot[0] = echan->ch_num; |
701 | 701 | ||
702 | dev_info(dev, "allocated channel for %u:%u\n", | 702 | dev_dbg(dev, "allocated channel for %u:%u\n", |
703 | EDMA_CTLR(echan->ch_num), EDMA_CHAN_SLOT(echan->ch_num)); | 703 | EDMA_CTLR(echan->ch_num), EDMA_CHAN_SLOT(echan->ch_num)); |
704 | 704 | ||
705 | return 0; | 705 | return 0; |
706 | 706 | ||
@@ -736,7 +736,7 @@ static void edma_free_chan_resources(struct dma_chan *chan) | |||
736 | echan->alloced = false; | 736 | echan->alloced = false; |
737 | } | 737 | } |
738 | 738 | ||
739 | dev_info(dev, "freeing channel for %u\n", echan->ch_num); | 739 | dev_dbg(dev, "freeing channel for %u\n", echan->ch_num); |
740 | } | 740 | } |
741 | 741 | ||
742 | /* Send pending descriptor to hardware */ | 742 | /* Send pending descriptor to hardware */ |