Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 305903
b: refs/heads/master
c: f7329e7
h: refs/heads/master
i:
  305901: 5f55cf2
  305899: 528f9ae
  305895: 2326b35
  305887: a89f2b3
v: v3
  • Loading branch information
Andreas Westin authored and Herbert Xu committed May 15, 2012
1 parent 987bd95 commit 1f02dfd
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 585d188f8072aa3722d5c1ec1f0f2ea82e474778
refs/heads/master: f7329e71626c977fee672710142eb34ed7d021c7
5 changes: 2 additions & 3 deletions trunk/drivers/crypto/ux500/cryp/cryp_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -542,8 +542,7 @@ static int cryp_set_dma_transfer(struct cryp_ctx *ctx,
desc = channel->device->device_prep_slave_sg(channel,
ctx->device->dma.sg_src,
ctx->device->dma.sg_src_len,
direction,
DMA_CTRL_ACK);
direction, DMA_CTRL_ACK, NULL);
break;

case DMA_FROM_DEVICE:
Expand All @@ -569,7 +568,7 @@ static int cryp_set_dma_transfer(struct cryp_ctx *ctx,
ctx->device->dma.sg_dst_len,
direction,
DMA_CTRL_ACK |
DMA_PREP_INTERRUPT);
DMA_PREP_INTERRUPT, NULL);

desc->callback = cryp_dma_out_callback;
desc->callback_param = ctx;
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/crypto/ux500/hash/hash_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ static int hash_set_dma_transfer(struct hash_ctx *ctx, struct scatterlist *sg,
"(TO_DEVICE)", __func__);
desc = channel->device->device_prep_slave_sg(channel,
ctx->device->dma.sg, ctx->device->dma.sg_len,
direction, DMA_CTRL_ACK | DMA_PREP_INTERRUPT);
direction, DMA_CTRL_ACK | DMA_PREP_INTERRUPT, NULL);
if (!desc) {
dev_err(ctx->device->dev,
"[%s]: device_prep_slave_sg() failed!", __func__);
Expand Down

0 comments on commit 1f02dfd

Please sign in to comment.