summaryrefslogtreecommitdiffstats
path: root/drivers/dma
diff options
context:
space:
mode:
authorDavide Ciminaghi2012-04-19 12:20:24 +0200
committerVinod Koul2012-04-25 11:40:57 +0200
commit88c08a3fba9954ce0ec3e1eab07c498a419ad7e3 (patch)
tree3e70ef723455e67c700c22abd8de40079e51093b /drivers/dma
parentdma: pl330: fix a couple of compilation warnings (diff)
downloadkernel-qcow2-linux-88c08a3fba9954ce0ec3e1eab07c498a419ad7e3.tar.gz
kernel-qcow2-linux-88c08a3fba9954ce0ec3e1eab07c498a419ad7e3.tar.xz
kernel-qcow2-linux-88c08a3fba9954ce0ec3e1eab07c498a419ad7e3.zip
dmaengine/amba-pl08x : reset phychan_hold on terminate all
When a client calls pl08x_control with DMA_TERMINATE_ALL, it is correct to terminate and release the phy channel currently in use (if one is in use), but the phychan_hold counter must also be reset (otherwise it could get trapped in an unbalanced state). Signed-off-by: Davide Ciminaghi <ciminaghi@gnudd.com> Reviewed-by: Viresh Kumar <viresh.kumar@st.com> Acked-by: Linus Walleij <linus.walleij@linaro.org> Signed-off-by: Vinod Koul <vinod.koul@linux.intel.com>
Diffstat (limited to 'drivers/dma')
-rw-r--r--drivers/dma/amba-pl08x.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/dma/amba-pl08x.c b/drivers/dma/amba-pl08x.c
index c301a8ec31aa..3d704abd7912 100644
--- a/drivers/dma/amba-pl08x.c
+++ b/drivers/dma/amba-pl08x.c
@@ -1429,6 +1429,7 @@ static int pl08x_control(struct dma_chan *chan, enum dma_ctrl_cmd cmd,
* signal
*/
release_phy_channel(plchan);
+ plchan->phychan_hold = 0;
}
/* Dequeue jobs and free LLIs */
if (plchan->at) {