diff options
author | Robert Jennings <rcj@linux.vnet.ibm.com> | 2013-10-28 09:20:51 -0500 |
---|---|---|
committer | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2013-10-30 16:00:31 +1100 |
commit | b88c4767d9e2290aaa22b8b3702ad72af0ebd113 (patch) | |
tree | 0f585d25688ee4aecdd2bb77bda72773eaf245cc /arch/powerpc/kernel/module_64.c | |
parent | ec32dd663da29d0e2e3ca964d6a94c683a6582a9 (diff) | |
download | blackbird-obmc-linux-b88c4767d9e2290aaa22b8b3702ad72af0ebd113.tar.gz blackbird-obmc-linux-b88c4767d9e2290aaa22b8b3702ad72af0ebd113.zip |
powerpc: Move local setup.h declarations to arch includes
Move the few declarations from arch/powerpc/kernel/setup.h
into arch/powerpc/include/asm/setup.h. This resolves a
sparse warning for arch/powerpc/mm/numa.c which defines
do_init_bootmem() but can't include the setup.h header
in the prior path.
Resolves:
arch/powerpc/mm/numa.c:998:13:
warning: symbol 'do_init_bootmem' was not declared.
Should it be static?
Signed-off-by: Robert C Jennings <rcj@linux.vnet.ibm.com>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/kernel/module_64.c')
-rw-r--r-- | arch/powerpc/kernel/module_64.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/powerpc/kernel/module_64.c b/arch/powerpc/kernel/module_64.c index a102f4412392..12664c130d73 100644 --- a/arch/powerpc/kernel/module_64.c +++ b/arch/powerpc/kernel/module_64.c @@ -26,8 +26,7 @@ #include <asm/firmware.h> #include <asm/code-patching.h> #include <linux/sort.h> - -#include "setup.h" +#include <asm/setup.h> /* FIXME: We don't do .init separately. To do this, we'd need to have a separate r2 value in the init and core section, and stub between |