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:
parent
7ea6031430
commit
43fe2bba37
1 changed files with 2 additions and 2 deletions
|
|
@ -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__);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue