diff options
Diffstat (limited to 'crypto/hmac.c')
-rw-r--r-- | crypto/hmac.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/hmac.c b/crypto/hmac.c index a1d016a50e7d..b60c3c7aa320 100644 --- a/crypto/hmac.c +++ b/crypto/hmac.c | |||
@@ -213,7 +213,7 @@ static struct crypto_instance *hmac_alloc(struct rtattr **tb) | |||
213 | alg = crypto_get_attr_alg(tb, CRYPTO_ALG_TYPE_HASH, | 213 | alg = crypto_get_attr_alg(tb, CRYPTO_ALG_TYPE_HASH, |
214 | CRYPTO_ALG_TYPE_HASH_MASK); | 214 | CRYPTO_ALG_TYPE_HASH_MASK); |
215 | if (IS_ERR(alg)) | 215 | if (IS_ERR(alg)) |
216 | return ERR_PTR(PTR_ERR(alg)); | 216 | return ERR_CAST(alg); |
217 | 217 | ||
218 | inst = crypto_alloc_instance("hmac", alg); | 218 | inst = crypto_alloc_instance("hmac", alg); |
219 | if (IS_ERR(inst)) | 219 | if (IS_ERR(inst)) |