summaryrefslogtreecommitdiffstats
path: root/kernel/crypto/algif_rng.c
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/crypto/algif_rng.c')
-rw-r--r--kernel/crypto/algif_rng.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/crypto/algif_rng.c b/kernel/crypto/algif_rng.c
index 8109aaad2..150c2b648 100644
--- a/kernel/crypto/algif_rng.c
+++ b/kernel/crypto/algif_rng.c
@@ -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
* 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 = {