Commit 7e933d3b authored by Fabio Baltieri's avatar Fabio Baltieri Committed by Linus Walleij

crypto: ux500: use dmaengine_prep_slave_sg API

Use dmaengine_prep_slave_sg inline function instead of going through the
structures manually.
Signed-off-by: default avatarFabio Baltieri <fabio.baltieri@linaro.org>
Acked-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent 97453dfb
...@@ -553,10 +553,10 @@ static int cryp_set_dma_transfer(struct cryp_ctx *ctx, ...@@ -553,10 +553,10 @@ static int cryp_set_dma_transfer(struct cryp_ctx *ctx,
dev_dbg(ctx->device->dev, "[%s]: Setting up DMA for buffer " dev_dbg(ctx->device->dev, "[%s]: Setting up DMA for buffer "
"(TO_DEVICE)", __func__); "(TO_DEVICE)", __func__);
desc = channel->device->device_prep_slave_sg(channel, desc = dmaengine_prep_slave_sg(channel,
ctx->device->dma.sg_src, ctx->device->dma.sg_src,
ctx->device->dma.sg_src_len, ctx->device->dma.sg_src_len,
direction, DMA_CTRL_ACK, NULL); direction, DMA_CTRL_ACK);
break; break;
case DMA_FROM_DEVICE: case DMA_FROM_DEVICE:
...@@ -577,12 +577,12 @@ static int cryp_set_dma_transfer(struct cryp_ctx *ctx, ...@@ -577,12 +577,12 @@ static int cryp_set_dma_transfer(struct cryp_ctx *ctx,
dev_dbg(ctx->device->dev, "[%s]: Setting up DMA for buffer " dev_dbg(ctx->device->dev, "[%s]: Setting up DMA for buffer "
"(FROM_DEVICE)", __func__); "(FROM_DEVICE)", __func__);
desc = channel->device->device_prep_slave_sg(channel, desc = dmaengine_prep_slave_sg(channel,
ctx->device->dma.sg_dst, ctx->device->dma.sg_dst,
ctx->device->dma.sg_dst_len, ctx->device->dma.sg_dst_len,
direction, direction,
DMA_CTRL_ACK | DMA_CTRL_ACK |
DMA_PREP_INTERRUPT, NULL); DMA_PREP_INTERRUPT);
desc->callback = cryp_dma_out_callback; desc->callback = cryp_dma_out_callback;
desc->callback_param = ctx; desc->callback_param = ctx;
......
...@@ -180,9 +180,9 @@ static int hash_set_dma_transfer(struct hash_ctx *ctx, struct scatterlist *sg, ...@@ -180,9 +180,9 @@ static int hash_set_dma_transfer(struct hash_ctx *ctx, struct scatterlist *sg,
dev_dbg(ctx->device->dev, "[%s]: Setting up DMA for buffer " dev_dbg(ctx->device->dev, "[%s]: Setting up DMA for buffer "
"(TO_DEVICE)", __func__); "(TO_DEVICE)", __func__);
desc = channel->device->device_prep_slave_sg(channel, desc = dmaengine_prep_slave_sg(channel,
ctx->device->dma.sg, ctx->device->dma.sg_len, ctx->device->dma.sg, ctx->device->dma.sg_len,
direction, DMA_CTRL_ACK | DMA_PREP_INTERRUPT, NULL); direction, DMA_CTRL_ACK | DMA_PREP_INTERRUPT);
if (!desc) { if (!desc) {
dev_err(ctx->device->dev, dev_err(ctx->device->dev,
"[%s]: device_prep_slave_sg() failed!", __func__); "[%s]: device_prep_slave_sg() failed!", __func__);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment