powerpc: Use bool in archrandom.h
authorRichard Henderson <richard.henderson@linaro.org>
Fri, 10 Jan 2020 14:54:20 +0000 (14:54 +0000)
committerTheodore Ts'o <tytso@mit.edu>
Sat, 25 Jan 2020 17:18:51 +0000 (12:18 -0500)
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>
arch/powerpc/include/asm/archrandom.h

index 2fa7cdf..f0f16b4 100644 (file)
@@ -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)