Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge branch 'fixes' of git://git.infradead.org/users/vkoul/slave-dma

Pull slave-dmaengine fixes from Vinod Koul:
"Two small fixes for omap dmaengine driver which fixes cyclic suspend
and resume"

* 'fixes' of git://git.infradead.org/users/vkoul/slave-dma:
dmaengine: omap-dma: Restore the CLINK_CTRL in resume path
dmaengine: omap-dma: Add memory barrier to dma_resume path

+5
+5
drivers/dma/omap-dma.c
··· 1017 1017 return -EINVAL; 1018 1018 1019 1019 if (c->paused) { 1020 + mb(); 1021 + 1022 + /* Restore channel link register */ 1023 + omap_dma_chan_write(c, CLNK_CTRL, c->desc->clnk_ctrl); 1024 + 1020 1025 omap_dma_start(c, c->desc); 1021 1026 c->paused = false; 1022 1027 }