]> rtime.felk.cvut.cz Git - lisovros/linux_canprio.git/blobdiff - crypto/ctr.c
crypto: Use ERR_CAST
[lisovros/linux_canprio.git] / crypto / ctr.c
index 6c3bfabb9d1d1b7a54a675373b66d46b70310e32..4ca7222cfeb6ac4bfcf32e4a97a072e1535577a7 100644 (file)
@@ -185,7 +185,7 @@ static struct crypto_instance *crypto_ctr_alloc(struct rtattr **tb)
        alg = crypto_attr_alg(tb[1], CRYPTO_ALG_TYPE_CIPHER,
                                  CRYPTO_ALG_TYPE_MASK);
        if (IS_ERR(alg))
-               return ERR_PTR(PTR_ERR(alg));
+               return ERR_CAST(alg);
 
        /* Block size must be >= 4 bytes. */
        err = -EINVAL;