[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <1398718128-22647-2-git-send-email-joelf@ti.com>
Date: Mon, 28 Apr 2014 15:48:48 -0500
From: Joel Fernandes <joelf@...com>
To: Sekhar Nori <nsekhar@...com>, Matt Porter <matt@...orter.com>,
Vinod Koul <vinod.koul@...el.com>, Dan Williams <djbw@...com>
CC: Linux OMAP List <linux-omap@...r.kernel.org>,
Linux ARM Kernel List <linux-arm-kernel@...ts.infradead.org>,
Linux DaVinci Kernel List
<davinci-linux-open-source@...ux.davincidsp.com>,
Linux Kernel Mailing List <linux-kernel@...r.kernel.org>,
Thomas Gleixner <tglx@...utronix.de>,
Joel Fernandes <joelf@...com>
Subject: [PATCH 2/2] dmaengine: edma: update DMA memcpy to use new param element
edma param struct is now within an edma_pset struct introduced in Thomas
Gleixner's edma tx status series. Update memcpy function for the same.
Cc: Thomas Gleixner <tglx@...utronix.de>
Signed-off-by: Joel Fernandes <joelf@...com>
---
drivers/dma/edma.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/dma/edma.c b/drivers/dma/edma.c
index 8926078..ec9c410 100644
--- a/drivers/dma/edma.c
+++ b/drivers/dma/edma.c
@@ -582,8 +582,8 @@ struct dma_async_tx_descriptor *edma_prep_dma_memcpy(
* on completion of every TR, and enable transfer-completion
* interrupt on completion of the whole transfer.
*/
- edesc->pset[0].opt |= ITCCHEN;
- edesc->pset[0].opt |= TCINTEN;
+ edesc->pset[0].param.opt |= ITCCHEN;
+ edesc->pset[0].param.opt |= TCINTEN;
return vchan_tx_prep(&echan->vchan, &edesc->vdesc, tx_flags);
}
--
1.7.9.5
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists