diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2020-01-10 15:54:16 +0100 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2020-01-25 18:18:50 +0100 |
commit | 647f50d5d9d933b644b29c54f13ac52af1b1774d (patch) | |
tree | a404b8889755d0e8baf3983416ba90ae3706e316 /include | |
parent | s390: Remove arch_has_random, arch_has_random_seed (diff) | |
download | linux-647f50d5d9d933b644b29c54f13ac52af1b1774d.tar.xz linux-647f50d5d9d933b644b29c54f13ac52af1b1774d.zip |
linux/random.h: Remove arch_has_random, arch_has_random_seed
The arm64 version of archrandom.h will need to be able to test for
support and read the random number without preemption, so a separate
query predicate is not practical.
Since this part of the generic interface is unused, remove it.
Signed-off-by: Richard Henderson <rth@twiddle.net>
Signed-off-by: Mark Brown <broonie@kernel.org>
Link: https://lore.kernel.org/r/20200110145422.49141-5-broonie@kernel.org
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/random.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/include/linux/random.h b/include/linux/random.h index f189c927fdea..7fd0360908d2 100644 --- a/include/linux/random.h +++ b/include/linux/random.h @@ -175,10 +175,6 @@ static inline bool arch_get_random_int(unsigned int *v) { return 0; } -static inline bool arch_has_random(void) -{ - return 0; -} static inline bool arch_get_random_seed_long(unsigned long *v) { return 0; @@ -187,10 +183,6 @@ static inline bool arch_get_random_seed_int(unsigned int *v) { return 0; } -static inline bool arch_has_random_seed(void) -{ - return 0; -} #endif /* Pseudo random number generator from numerical recipes. */ |