[ARM] 3363/1: [cleanup] process.c - fix warnings

Patch from Ben Dooks

Fix the following warnings from sparse:

arch/arm/kernel/process.c:86:6: warning: symbol 'default_idle' was not declared. Should it be static?
arch/arm/kernel/process.c:378:5: warning: symbol 'dump_fpu' was not declared. Should it be static?

Include <linux/elfcore.h> for dump_fpu() decleration, and
make default_idle() static as it is not used outside the file.

Signed-off-by: Ben Dooks <ben-linux@fluff.org>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>

authored by Ben Dooks and committed by Russell King 84dff1a7 66be0c30

+2 -1
+2 -1
arch/arm/kernel/process.c
··· 27 27 #include <linux/kallsyms.h> 28 28 #include <linux/init.h> 29 29 #include <linux/cpu.h> 30 + #include <linux/elfcore.h> 30 31 31 32 #include <asm/leds.h> 32 33 #include <asm/processor.h> ··· 84 83 * This is our default idle handler. We need to disable 85 84 * interrupts here to ensure we don't miss a wakeup call. 86 85 */ 87 - void default_idle(void) 86 + static void default_idle(void) 88 87 { 89 88 if (hlt_counter) 90 89 cpu_relax();