crypto: ux500: use dmaengine_device_control API
authorFabio Baltieri <fabio.baltieri@linaro.org>
Tue, 25 Jun 2013 08:54:47 +0000 (10:54 +0200)
committerLinus Walleij <linus.walleij@linaro.org>
Tue, 25 Jun 2013 12:51:26 +0000 (14:51 +0200)
Use dmaengine_device_control inline function instead of going through the
structures manually.

Signed-off-by: Fabio Baltieri <fabio.baltieri@linaro.org>
Acked-by: Herbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/crypto/ux500/cryp/cryp_core.c
drivers/crypto/ux500/hash/hash_core.c

index 4f8b11af29a6fcf09980ecce215d4ad75900dc3c..8e9dc05705a9b35985bda48c42c5fb6db61b0571 100644 (file)
@@ -607,12 +607,12 @@ static void cryp_dma_done(struct cryp_ctx *ctx)
        dev_dbg(ctx->device->dev, "[%s]: ", __func__);
 
        chan = ctx->device->dma.chan_mem2cryp;
-       chan->device->device_control(chan, DMA_TERMINATE_ALL, 0);
+       dmaengine_device_control(chan, DMA_TERMINATE_ALL, 0);
        dma_unmap_sg(chan->device->dev, ctx->device->dma.sg_src,
                     ctx->device->dma.sg_src_len, DMA_TO_DEVICE);
 
        chan = ctx->device->dma.chan_cryp2mem;
-       chan->device->device_control(chan, DMA_TERMINATE_ALL, 0);
+       dmaengine_device_control(chan, DMA_TERMINATE_ALL, 0);
        dma_unmap_sg(chan->device->dev, ctx->device->dma.sg_dst,
                     ctx->device->dma.sg_dst_len, DMA_FROM_DEVICE);
 }
index cffe26ea716f2e4e14fa2490287c9c30e590d0c4..58d6fcfe2d0fd27e1134e314d04a71300fff9b59 100644 (file)
@@ -203,7 +203,7 @@ static void hash_dma_done(struct hash_ctx *ctx)
        struct dma_chan *chan;
 
        chan = ctx->device->dma.chan_mem2hash;
-       chan->device->device_control(chan, DMA_TERMINATE_ALL, 0);
+       dmaengine_device_control(chan, DMA_TERMINATE_ALL, 0);
        dma_unmap_sg(chan->device->dev, ctx->device->dma.sg,
                        ctx->device->dma.sg_len, DMA_TO_DEVICE);