diff options
author | Vinod Koul <vinod.koul@intel.com> | 2014-12-08 11:25:50 +0530 |
---|---|---|
committer | Vinod Koul <vinod.koul@intel.com> | 2014-12-22 12:34:23 +0530 |
commit | f67bcc404249ed3fdedec250b24c705564802f21 (patch) | |
tree | d8872a9344c67934e9269c98f95ceba422cf0c25 | |
parent | a29c3956369b0a993fc41d4ec29289587bd16249 (diff) |
dmaengine: mxs-dma: fix unused variable warn
drivers/dma/mxs-dma.c: In function 'mxs_dma_terminate_all':
drivers/dma/mxs-dma.c:662:23: warning: unused variable 'mxs_chan'[-Wunused-variable]
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
-rw-r--r-- | drivers/dma/mxs-dma.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/dma/mxs-dma.c b/drivers/dma/mxs-dma.c index bf286aa6b227..599ffb5b7848 100644 --- a/drivers/dma/mxs-dma.c +++ b/drivers/dma/mxs-dma.c @@ -661,8 +661,6 @@ err_out: static int mxs_dma_terminate_all(struct dma_chan *chan) { - struct mxs_dma_chan *mxs_chan = to_mxs_dma_chan(chan); - mxs_dma_reset_chan(chan); mxs_dma_disable_chan(chan); |