Skip to content

Commit 473bd0e

Browse files
committed
[software] Remove DMA with mode selection
1 parent 543027b commit 473bd0e

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

software/runtime/dma.h

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -74,10 +74,4 @@ void dma_memcpy_blocking(void *dest, const void *src, size_t len) {
7474
dma_wait();
7575
}
7676

77-
void dma_memcpy_ModeSel(void *dest, const void *src, size_t len,
78-
uint32_t mode_sel) {
79-
dma_mode_reg = mode_sel;
80-
dma_memcpy_nonblocking(dest, src, len);
81-
}
82-
8377
#endif // _DMA_H_

0 commit comments

Comments
 (0)