diff mbox series

dmaengine: ti: omap-dma: Remove variable override in omap_dma_tx_status()

Message ID 20190730132029.2971-1-peter.ujfalusi@ti.com (mailing list archive)
State Mainlined
Commit 9fa2df6eafa024e9f10ff60518ab62abe1c6cfb6
Headers show
Series dmaengine: ti: omap-dma: Remove variable override in omap_dma_tx_status() | expand

Commit Message

Peter Ujfalusi July 30, 2019, 1:20 p.m. UTC
There is no need to fetch local omap_desc since the desc we have is the
correct one already when we need to check the channel status.

Signed-off-by: Peter Ujfalusi <peter.ujfalusi@ti.com>
---
 drivers/dma/ti/omap-dma.c | 1 -
 1 file changed, 1 deletion(-)

Comments

Vinod Koul Sept. 4, 2019, 4:41 a.m. UTC | #1
On 30-07-19, 16:20, Peter Ujfalusi wrote:
> There is no need to fetch local omap_desc since the desc we have is the
> correct one already when we need to check the channel status.

Applied, thanks
diff mbox series

Patch

diff --git a/drivers/dma/ti/omap-dma.c b/drivers/dma/ti/omap-dma.c
index 3b57b68df896..9f359ec3386d 100644
--- a/drivers/dma/ti/omap-dma.c
+++ b/drivers/dma/ti/omap-dma.c
@@ -860,7 +860,6 @@  static enum dma_status omap_dma_tx_status(struct dma_chan *chan,
 		 * accordingly and mark it as completed
 		 */
 		if (!(ccr & CCR_ENABLE)) {
-			struct omap_desc *d = c->desc;
 			ret = DMA_COMPLETE;
 			omap_dma_start_desc(c);
 			vchan_cookie_complete(&d->vd);