projects
/
GitHub
/
LineageOS
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
72b2caf
)
dmaengine: coh901318: use dmaengine_terminate_all() API
author
Vinod Koul
<vinod.koul@intel.com>
Sat, 11 Oct 2014 15:40:30 +0000
(21:10 +0530)
committer
Vinod Koul
<vinod.koul@intel.com>
Wed, 15 Oct 2014 16:00:59 +0000
(21:30 +0530)
The drivers should use dmaengine_terminate_all() API instead of accessing
the device_control which will be deprecated soon
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
drivers/dma/coh901318.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/dma/coh901318.c
b/drivers/dma/coh901318.c
index 3c6716e0b78eee2592a8c977550ce036ab4318c5..e88588d8ecd34b82dc23098ee73ea93a00e416fc 100644
(file)
--- a/
drivers/dma/coh901318.c
+++ b/
drivers/dma/coh901318.c
@@
-2156,7
+2156,7
@@
coh901318_free_chan_resources(struct dma_chan *chan)
spin_unlock_irqrestore(&cohc->lock, flags);
-
chan->device->device_control(chan, DMA_TERMINATE_ALL, 0
);
+
dmaengine_terminate_all(chan
);
}