diff options
author | Uros Bizjak <[email protected]> | 2024-09-30 14:33:27 +0200 |
---|---|---|
committer | Jason A. Donenfeld <[email protected]> | 2024-10-03 18:20:29 +0200 |
commit | 0402779aae14d56a7972a83250fd3fe636abaf12 (patch) | |
tree | 30c303b4dc96b6cd57b7e4104d0b22d59d778a8e | |
parent | 1da74f9050a14b6e7f22e6f4d60bf62e517970cd (diff) |
lib/test_scanf: 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 <[email protected]>
Acked-by: Petr Mladek <[email protected]>
Cc: Steven Rostedt <[email protected]>
Cc: Andy Shevchenko <[email protected]>
Cc: Rasmus Villemoes <[email protected]>
Cc: Sergey Senozhatsky <[email protected]>
Cc: Andrew Morton <[email protected]>
Signed-off-by: Jason A. Donenfeld <[email protected]>
-rw-r--r-- | lib/test_scanf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/test_scanf.c b/lib/test_scanf.c index 7257b1768545..44f8508c9d88 100644 --- a/lib/test_scanf.c +++ b/lib/test_scanf.c @@ -11,7 +11,7 @@ #include <linux/module.h> #include <linux/overflow.h> #include <linux/printk.h> -#include <linux/random.h> +#include <linux/prandom.h> #include <linux/slab.h> #include <linux/string.h> |