From: Peter Griffin Date: Tue, 7 Jun 2016 17:38:36 +0000 (+0100) Subject: dmaengine: coh901318: Only calculate residue if txstate exists. X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=95b0aa3e10b08b9ee20b5f5e19d162d049744a9b;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git dmaengine: coh901318: Only calculate residue if txstate exists. There is no point in calculating the residue if there is no txstate to store the value. Signed-off-by: Peter Griffin Acked-by: Linus Walleij Signed-off-by: Vinod Koul --- diff --git a/drivers/dma/coh901318.c b/drivers/dma/coh901318.c index c340ca9bd2b5..c1006165cea8 100644 --- a/drivers/dma/coh901318.c +++ b/drivers/dma/coh901318.c @@ -2422,7 +2422,7 @@ coh901318_tx_status(struct dma_chan *chan, dma_cookie_t cookie, enum dma_status ret; ret = dma_cookie_status(chan, cookie, txstate); - if (ret == DMA_COMPLETE) + if (ret == DMA_COMPLETE || !txstate) return ret; dma_set_residue(txstate, coh901318_get_bytes_left(chan));