Commit 27018ab1 authored by YueHaibing's avatar YueHaibing Committed by Herbert Xu
Browse files

crypto: inside-secure - Use PTR_ERR_OR_ZERO in safexcel_xcbcmac_cra_init()



Use PTR_ERR_OR_ZERO rather than if(IS_ERR(...)) + PTR_ERR

Signed-off-by: default avatarYueHaibing <yuehaibing@huawei.com>
Acked-by: default avatarAntoine Tenart <antoine.tenart@ack.tf>
Acked-by: default avatarPascal van Leeuwen <pvanleeuwen@verimatrix.com>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent 965d7286
Loading
Loading
Loading
Loading
+1 −4
Original line number Diff line number Diff line
@@ -2109,10 +2109,7 @@ static int safexcel_xcbcmac_cra_init(struct crypto_tfm *tfm)

	safexcel_ahash_cra_init(tfm);
	ctx->kaes = crypto_alloc_cipher("aes", 0, 0);
	if (IS_ERR(ctx->kaes))
		return PTR_ERR(ctx->kaes);

	return 0;
	return PTR_ERR_OR_ZERO(ctx->kaes);
}

static void safexcel_xcbcmac_cra_exit(struct crypto_tfm *tfm)