random: Add arch_has_random[_seed]()
[cascardo/linux.git] / include / linux / random.h
index 1cfce0e..57fbbff 100644 (file)
@@ -88,6 +88,22 @@ static inline int arch_get_random_int(unsigned int *v)
 {
        return 0;
 }
+static inline int arch_has_random(void)
+{
+       return 0;
+}
+static inline int arch_get_random_seed_long(unsigned long *v)
+{
+       return 0;
+}
+static inline int arch_get_random_seed_int(unsigned int *v)
+{
+       return 0;
+}
+static inline int arch_has_random_seed(void)
+{
+       return 0;
+}
 #endif
 
 /* Pseudo random number generator from numerical recipes. */