diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2020-01-10 14:54:20 +0000 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2020-01-25 12:18:51 -0500 |
commit | 98dcfce69729f9ce0fb14f96a39bbdba21429597 (patch) | |
tree | 4eb0e5ebc67f393622e71d4fc5e0b2fc257606da | |
parent | 1640a7b9f48293ef548596bdba4a461a89ceec6e (diff) | |
download | linux-98dcfce69729f9ce0fb14f96a39bbdba21429597.tar.bz2 |
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>
-rw-r--r-- | arch/powerpc/include/asm/archrandom.h | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/arch/powerpc/include/asm/archrandom.h b/arch/powerpc/include/asm/archrandom.h index 2fa7cdfbba24..f0f16b4fc5ea 100644 --- a/arch/powerpc/include/asm/archrandom.h +++ b/arch/powerpc/include/asm/archrandom.h @@ -6,27 +6,28 @@ #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) 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; - int rc; + bool rc; rc = arch_get_random_seed_long(&val); if (rc) |