Skip to content

Commit 0e772c6

Browse files
ezequielgarciaVinod Koul
authored andcommitted
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>
1 parent 397321f commit 0e772c6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

drivers/dma/edma.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -699,8 +699,8 @@ static int edma_alloc_chan_resources(struct dma_chan *chan)
699699
echan->alloced = true;
700700
echan->slot[0] = echan->ch_num;
701701

702-
dev_info(dev, "allocated channel for %u:%u\n",
703-
EDMA_CTLR(echan->ch_num), EDMA_CHAN_SLOT(echan->ch_num));
702+
dev_dbg(dev, "allocated channel for %u:%u\n",
703+
EDMA_CTLR(echan->ch_num), EDMA_CHAN_SLOT(echan->ch_num));
704704

705705
return 0;
706706

@@ -736,7 +736,7 @@ static void edma_free_chan_resources(struct dma_chan *chan)
736736
echan->alloced = false;
737737
}
738738

739-
dev_info(dev, "freeing channel for %u\n", echan->ch_num);
739+
dev_dbg(dev, "freeing channel for %u\n", echan->ch_num);
740740
}
741741

742742
/* Send pending descriptor to hardware */

0 commit comments

Comments
 (0)