drivers: dma: gpdma: reduce logging verbosity

Reduce logging verbosity in status call from INF to DBG as the function
can be called any given time i.e. eveything is fine even if the read and
write pointers don't differ.

Signed-off-by: Jaska Uimonen <jaska.uimonen@linux.intel.com>
This commit is contained in:
Jaska Uimonen 2022-11-24 08:18:22 +02:00 committed by Carles Cufí
parent 7ea6031430
commit 43fe2bba37

View file

@ -719,7 +719,7 @@ static int dw_dma_avail_data_size(uint32_t base,
if (delta) {
size = chan_data->ptr_data.buffer_bytes;
} else {
LOG_INF("%s size is 0!", __func__);
LOG_DBG("%s size is 0!", __func__);
}
}
@ -751,7 +751,7 @@ static int dw_dma_free_data_size(uint32_t base,
if (delta) {
size = chan_data->ptr_data.buffer_bytes;
} else {
LOG_INF("%s size is 0!", __func__);
LOG_DBG("%s size is 0!", __func__);
}
}