]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
powerpc/32: Add missing prototypes for (early|machine)_init()
authorMathieu Malaterre <malat@debian.org>
Thu, 8 Mar 2018 11:31:59 +0000 (22:31 +1100)
committerMichael Ellerman <mpe@ellerman.id.au>
Tue, 13 Mar 2018 04:50:42 +0000 (15:50 +1100)
early_init() and machine_init() have no prototype, add one in
asm-prototypes.h.

Fixes the following warnings (treated as error in W=1):
  arch/powerpc/kernel/setup_32.c:68:30: error: no previous prototype for ‘early_init’
  arch/powerpc/kernel/setup_32.c:99:21: error: no previous prototype for ‘machine_init’

Signed-off-by: Mathieu Malaterre <malat@debian.org>
[mpe: Move them to asm-prototypes.h, drop other functions]
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
arch/powerpc/include/asm/asm-prototypes.h
arch/powerpc/kernel/setup_32.c

index 4d8b89b460184e92e76d5b2fbc8a944813c4d96d..0bdeff415a728dd6b9cdce3cc825b62ae2a9a97a 100644 (file)
@@ -95,7 +95,10 @@ int sys_debug_setcontext(struct ucontext __user *ctx,
                         struct pt_regs *regs);
 int
 ppc_select(int n, fd_set __user *inp, fd_set __user *outp, fd_set __user *exp, struct timeval __user *tvp);
+unsigned long __init early_init(unsigned long dt_ptr);
+void __init machine_init(u64 dt_ptr);
 #endif
+
 long ppc_fadvise64_64(int fd, int advice, u32 offset_high, u32 offset_low,
                      u32 len_high, u32 len_low);
 long sys_switch_endian(void);
index 57b668412e9c288dec15ea1f45603f4f4cef3d9d..74457485574b7db3ce7fa942e425c4a9138e03a7 100644 (file)
@@ -39,6 +39,7 @@
 #include <asm/udbg.h>
 #include <asm/code-patching.h>
 #include <asm/cpu_has_feature.h>
+#include <asm/asm-prototypes.h>
 
 #define DBG(fmt...)