dbdma: disable two logging messages.

This commit is contained in:
Maxim Poliakovski 2022-11-18 18:07:32 +01:00
parent 4f05d3dae6
commit 3b0e2c677d

View File

@ -277,8 +277,6 @@ void DMAChannel::start()
return; return;
} }
LOG_F(INFO, "Starting DMA channel, stat = 0x%X", this->ch_stat);
this->queue_len = 0; this->queue_len = 0;
if (this->start_cb) if (this->start_cb)
@ -295,7 +293,7 @@ void DMAChannel::resume() {
} }
void DMAChannel::abort() { void DMAChannel::abort() {
LOG_F(INFO, "Aborting DMA channel"); LOG_F(9, "Aborting DMA channel");
} }
void DMAChannel::pause() { void DMAChannel::pause() {