diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/random.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/linux/random.h b/include/linux/random.h index 5f4ce432482d..57fa7d52ef73 100644 --- a/include/linux/random.h +++ b/include/linux/random.h @@ -120,19 +120,19 @@ unsigned long randomize_page(unsigned long start, unsigned long range); #else static inline bool arch_get_random_long(unsigned long *v) { - return 0; + return false; } static inline bool arch_get_random_int(unsigned int *v) { - return 0; + return false; } static inline bool arch_get_random_seed_long(unsigned long *v) { - return 0; + return false; } static inline bool arch_get_random_seed_int(unsigned int *v) { - return 0; + return false; } #endif |