mirror of
https://github.com/torvalds/linux.git
synced 2024-12-12 14:12:51 +00:00
crypto: ux500 - fix error return code in hash_dma_final()
Fix to return a negative error code from the error handling case instead of 0, as returned elsewhere in this function. Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn> Acked-by: Linus Walleij <linus.walleij@linaro.org> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
parent
5cec26e984
commit
eb16796302
@ -939,6 +939,7 @@ static int hash_dma_final(struct ahash_request *req)
|
|||||||
if (!ctx->device->dma.nents) {
|
if (!ctx->device->dma.nents) {
|
||||||
dev_err(device_data->dev, "[%s] "
|
dev_err(device_data->dev, "[%s] "
|
||||||
"ctx->device->dma.nents = 0", __func__);
|
"ctx->device->dma.nents = 0", __func__);
|
||||||
|
ret = ctx->device->dma.nents;
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -946,6 +947,7 @@ static int hash_dma_final(struct ahash_request *req)
|
|||||||
if (bytes_written != req->nbytes) {
|
if (bytes_written != req->nbytes) {
|
||||||
dev_err(device_data->dev, "[%s] "
|
dev_err(device_data->dev, "[%s] "
|
||||||
"hash_dma_write() failed!", __func__);
|
"hash_dma_write() failed!", __func__);
|
||||||
|
ret = bytes_written;
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user