summaryrefslogtreecommitdiff
path: root/include/linux
diff options
context:
space:
mode:
authorRichard Henderson <richard.henderson@linaro.org>2020-01-10 17:54:16 +0300
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2022-06-25 12:46:29 +0300
commitcacc99ee5a9c15923a74ff6942d8710c674e51f5 (patch)
tree457c16228f783b8c31d1c226ccdbfdcf5aa63324 /include/linux
parent596bcf5911e619da50c2174e234a0f8363c70a94 (diff)
downloadlinux-cacc99ee5a9c15923a74ff6942d8710c674e51f5.tar.xz
linux/random.h: Remove arch_has_random, arch_has_random_seed
commit 647f50d5d9d933b644b29c54f13ac52af1b1774d upstream. 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> Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/random.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/include/linux/random.h b/include/linux/random.h
index 5b3ec7d2791f..5f4ce432482d 100644
--- a/include/linux/random.h
+++ b/include/linux/random.h
@@ -126,10 +126,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;
@@ -138,10 +134,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
#endif /* _LINUX_RANDOM_H */