aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/random.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/random.h')
-rw-r--r--include/linux/random.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/include/linux/random.h b/include/linux/random.h
index 1cfce0e24dbd..57fbbffd77a0 100644
--- a/include/linux/random.h
+++ b/include/linux/random.h
@@ -88,6 +88,22 @@ static inline int arch_get_random_int(unsigned int *v)
88{ 88{
89 return 0; 89 return 0;
90} 90}
91static inline int arch_has_random(void)
92{
93 return 0;
94}
95static inline int arch_get_random_seed_long(unsigned long *v)
96{
97 return 0;
98}
99static inline int arch_get_random_seed_int(unsigned int *v)
100{
101 return 0;
102}
103static inline int arch_has_random_seed(void)
104{
105 return 0;
106}
91#endif 107#endif
92 108
93/* Pseudo random number generator from numerical recipes. */ 109/* Pseudo random number generator from numerical recipes. */