diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2020-01-10 15:54:20 +0100 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2020-01-25 18:18:51 +0100 |
commit | 98dcfce69729f9ce0fb14f96a39bbdba21429597 (patch) | |
tree | 4eb0e5ebc67f393622e71d4fc5e0b2fc257606da /arch/powerpc/include | |
parent | x86: Mark archrandom.h functions __must_check (diff) | |
download | linux-98dcfce69729f9ce0fb14f96a39bbdba21429597.tar.xz linux-98dcfce69729f9ce0fb14f96a39bbdba21429597.zip |
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>
Diffstat (limited to 'arch/powerpc/include')
-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) |