Commit 654ae152 authored by Herbert Xu's avatar Herbert Xu

crypto: algif_rng - Remove obsolete const-removal cast

Now that crypto_rng_reset takes a const argument, we no longer
need to cast away the const qualifier.
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent 94f1bb15
...@@ -164,7 +164,7 @@ static int rng_setkey(void *private, const u8 *seed, unsigned int seedlen) ...@@ -164,7 +164,7 @@ static int rng_setkey(void *private, const u8 *seed, unsigned int seedlen)
* Check whether seedlen is of sufficient size is done in RNG * Check whether seedlen is of sufficient size is done in RNG
* implementations. * implementations.
*/ */
return crypto_rng_reset(private, (u8 *)seed, seedlen); return crypto_rng_reset(private, seed, seedlen);
} }
static const struct af_alg_type algif_type_rng = { static const struct af_alg_type algif_type_rng = {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment