Skip to content

Commit

Permalink
crypto: msm: Fix misleading indentation
Browse files Browse the repository at this point in the history
Signed-off-by: Zile995 <stefan.zivkovic995@gmail.com>
  • Loading branch information
Zile995 committed Jul 16, 2020
1 parent ce79f92 commit 7ca6e42
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions drivers/crypto/msm/qce50.c
Original file line number Diff line number Diff line change
Expand Up @@ -4729,7 +4729,8 @@ int qce_ablk_cipher_req(void *handle, struct qce_req *c_req)
rc = _qce_sps_transfer(pce_dev);
if (rc)
goto bad;
return 0;

return 0;
bad:
if (areq->src != areq->dst) {
if (pce_dev->dst_nents) {
Expand Down Expand Up @@ -4814,7 +4815,7 @@ int qce_process_sha_req(void *handle, struct qce_sha_req *sreq)
rc = _qce_sps_transfer(pce_dev);
if (rc)
goto bad;
return 0;
return 0;
bad:
if (pce_dev->src_nents) {
qce_dma_unmap_sg(pce_dev->pdev, sreq->src,
Expand Down

0 comments on commit 7ca6e42

Please sign in to comment.