File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 6
6
7
7
#include <asm/machdep.h>
8
8
9
- static inline bool arch_get_random_long (unsigned long * v )
9
+ static inline bool __must_check arch_get_random_long (unsigned long * v )
10
10
{
11
11
return false;
12
12
}
13
13
14
- static inline bool arch_get_random_int (unsigned int * v )
14
+ static inline bool __must_check arch_get_random_int (unsigned int * v )
15
15
{
16
16
return false;
17
17
}
18
18
19
- static inline bool arch_get_random_seed_long (unsigned long * v )
19
+ static inline bool __must_check arch_get_random_seed_long (unsigned long * v )
20
20
{
21
21
if (ppc_md .get_random_seed )
22
22
return ppc_md .get_random_seed (v );
23
23
24
24
return false;
25
25
}
26
26
27
- static inline bool arch_get_random_seed_int (unsigned int * v )
27
+ static inline bool __must_check arch_get_random_seed_int (unsigned int * v )
28
28
{
29
29
unsigned long val ;
30
30
bool rc ;
You can’t perform that action at this time.
0 commit comments