crypto: msm: fix -Wmisleading-indentation warnings

This commit is contained in:
spakkkk 2020-09-26 19:48:10 +00:00
parent e76e02fa8d
commit add5a6f371

View File

@ -1927,9 +1927,11 @@ static inline long qcedev_ioctl(struct file *file,
mutex_unlock(&hash_access_lock);
if (copy_to_user((void __user *)arg, &qcedev_areq->sha_op_req,
sizeof(struct qcedev_sha_op_req)))
{
err = -EFAULT;
goto exit_free_qcedev_areq;
}
}
break;
case QCEDEV_IOCTL_SHA_FINAL_REQ:
@ -2019,8 +2021,10 @@ static inline long qcedev_ioctl(struct file *file,
mutex_unlock(&hash_access_lock);
if (copy_to_user((void __user *)arg, &qcedev_areq->sha_op_req,
sizeof(struct qcedev_sha_op_req)))
{
err = -EFAULT;
goto exit_free_qcedev_areq;
}
}
break;