diff options
author | Jaswinder Singh Rajput <jaswinder@kernel.org> | 2009-07-01 19:54:23 +0530 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-07-01 16:52:54 +0200 |
commit | 76c06927f2a78143763dcff9b4c362d15eb29cc2 (patch) | |
tree | 58989d580a732121ce6dd93f309b899d0ace7ef0 /arch/x86/mm | |
parent | b25ae679f613ed04aaf6ccbfdb9122fce668e4bb (diff) |
x86: Declare check_efer() before it gets used
This sparse warning:
arch/x86/mm/init.c:83:16: warning: symbol 'check_efer' was not declared. Should it be static?
triggers because check_efer() is not decalared before using it.
asm/proto.h includes the declaration of check_efer(), so
including asm/proto.h to fix that - this also addresses the
sparse warning.
Signed-off-by: Jaswinder Singh Rajput <jaswinderrajput@gmail.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
LKML-Reference: <1246458263.6940.22.camel@hpdv5.satnam>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/mm')
-rw-r--r-- | arch/x86/mm/init.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86/mm/init.c b/arch/x86/mm/init.c index 47ce9a2ce5e7..0607119cef94 100644 --- a/arch/x86/mm/init.c +++ b/arch/x86/mm/init.c @@ -12,6 +12,7 @@ #include <asm/system.h> #include <asm/tlbflush.h> #include <asm/tlb.h> +#include <asm/proto.h> DEFINE_PER_CPU(struct mmu_gather, mmu_gathers); |