diff options
author | 2024-09-30 14:33:24 +0200 | |
---|---|---|
committer | 2024-10-03 18:20:19 +0200 | |
commit | a7e74510e03d6254791f4a8e3eabf5f231c771a8 (patch) | |
tree | da3aa719f186fa9658581a3370e710900c5adbc6 | |
parent | random32: Include <linux/prandom.h> instead of <linux/random.h> (diff) | |
download | linux-rng-a7e74510e03d6254791f4a8e3eabf5f231c771a8.tar.xz linux-rng-a7e74510e03d6254791f4a8e3eabf5f231c771a8.zip |
lib/rbtree-test: Include <linux/prandom.h> instead of <linux/random.h>
Substitute the inclusion of <linux/random.h> header with
<linux/prandom.h> to allow the removal of legacy inclusion
of <linux/prandom.h> from <linux/random.h>.
Signed-off-by: Uros Bizjak <ubizjak@gmail.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
-rw-r--r-- | lib/rbtree_test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rbtree_test.c b/lib/rbtree_test.c index 41ae3c7570d3..8655a76d29a1 100644 --- a/lib/rbtree_test.c +++ b/lib/rbtree_test.c @@ -2,7 +2,7 @@ #include <linux/module.h> #include <linux/moduleparam.h> #include <linux/rbtree_augmented.h> -#include <linux/random.h> +#include <linux/prandom.h> #include <linux/slab.h> #include <asm/timex.h> |