Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions src/include/sof/lib/dma.h
Original file line number Diff line number Diff line change
Expand Up @@ -319,6 +319,12 @@ static inline int dma_stop(struct dma_chan_data *channel)
return ret;
}

/** \defgroup sof_dma_copy_func static int dma_copy (struct dma_chan_data * channel, int bytes, uint32_t flags)
*
* This function is in a separate subgroup to solve a name clash with
* struct dma_copy {}
* @{
*/
static inline int dma_copy(struct dma_chan_data *channel, int bytes,
uint32_t flags)
{
Expand All @@ -329,6 +335,7 @@ static inline int dma_copy(struct dma_chan_data *channel, int bytes,

return ret;
}
/** @} */

static inline int dma_pause(struct dma_chan_data *channel)
{
Expand Down