summary refs log tree commit diff
path: root/drivers/crypto/ux500/cryp
diff options
context:
space:
mode:
authorFabio Baltieri <fabio.baltieri@linaro.org>2013-06-25 10:54:49 +0200
committerLinus Walleij <linus.walleij@linaro.org>2013-06-25 14:51:34 +0200
commit06568483297739f6ce8f2d25983f88dd8b563a9d (patch)
tree4e796d3e2a70c5e9609215ee81acb9cf0d6cc75f /drivers/crypto/ux500/cryp
parent7e933d3b1e25b250b58b827ef455a1b489c84157 (diff)
downloadlinux-06568483297739f6ce8f2d25983f88dd8b563a9d.tar.gz
crypto: ux500: use dmaengine_submit API
Use dmaengine_submit instead of calling desc->tx_submit 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>
Diffstat (limited to 'drivers/crypto/ux500/cryp')
-rw-r--r--drivers/crypto/ux500/cryp/cryp_core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/crypto/ux500/cryp/cryp_core.c b/drivers/crypto/ux500/cryp/cryp_core.c
index 19a3a60706fc..0257f6b32642 100644
--- a/drivers/crypto/ux500/cryp/cryp_core.c
+++ b/drivers/crypto/ux500/cryp/cryp_core.c
@@ -594,7 +594,7 @@ static int cryp_set_dma_transfer(struct cryp_ctx *ctx,
 		return -EFAULT;
 	}
 
-	cookie = desc->tx_submit(desc);
+	cookie = dmaengine_submit(desc);
 	dma_async_issue_pending(channel);
 
 	return 0;