xref: /linux/include/asm-generic/archrandom.h (revision 9592eef7c16ec5fb9f36c4d9abe8eeffc2e1d2f3)
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef __ASM_GENERIC_ARCHRANDOM_H__
3 #define __ASM_GENERIC_ARCHRANDOM_H__
4 
5 static inline bool __must_check arch_get_random_long(unsigned long *v)
6 {
7 	return false;
8 }
9 
10 static inline bool __must_check arch_get_random_int(unsigned int *v)
11 {
12 	return false;
13 }
14 
15 static inline bool __must_check arch_get_random_seed_long(unsigned long *v)
16 {
17 	return false;
18 }
19 
20 static inline bool __must_check arch_get_random_seed_int(unsigned int *v)
21 {
22 	return false;
23 }
24 
25 #endif
26