mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-11 16:29:05 +00:00
powerpc: Use bool in archrandom.h
The generic interface uses bool not int; match that. Reviewed-by: Ard Biesheuvel <ardb@kernel.org> Signed-off-by: Richard Henderson <rth@twiddle.net> Signed-off-by: Mark Brown <broonie@kernel.org> Link: https://lore.kernel.org/r/20200110145422.49141-9-broonie@kernel.org Signed-off-by: Theodore Ts'o <tytso@mit.edu>
This commit is contained in:
parent
1640a7b9f4
commit
98dcfce697
@ -6,27 +6,28 @@
|
|||||||
|
|
||||||
#include <asm/machdep.h>
|
#include <asm/machdep.h>
|
||||||
|
|
||||||
static inline int arch_get_random_long(unsigned long *v)
|
static inline bool arch_get_random_long(unsigned long *v)
|
||||||
{
|
{
|
||||||
return 0;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline int arch_get_random_int(unsigned int *v)
|
static inline bool arch_get_random_int(unsigned int *v)
|
||||||
{
|
{
|
||||||
return 0;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline int arch_get_random_seed_long(unsigned long *v)
|
static inline bool arch_get_random_seed_long(unsigned long *v)
|
||||||
{
|
{
|
||||||
if (ppc_md.get_random_seed)
|
if (ppc_md.get_random_seed)
|
||||||
return ppc_md.get_random_seed(v);
|
return ppc_md.get_random_seed(v);
|
||||||
|
|
||||||
return 0;
|
return false;
|
||||||
}
|
}
|
||||||
static inline int arch_get_random_seed_int(unsigned int *v)
|
|
||||||
|
static inline bool arch_get_random_seed_int(unsigned int *v)
|
||||||
{
|
{
|
||||||
unsigned long val;
|
unsigned long val;
|
||||||
int rc;
|
bool rc;
|
||||||
|
|
||||||
rc = arch_get_random_seed_long(&val);
|
rc = arch_get_random_seed_long(&val);
|
||||||
if (rc)
|
if (rc)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user