diff options
author | Harvey Harrison <harvey.harrison@gmail.com> | 2008-02-13 13:26:39 -0800 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-02-19 16:18:28 +0100 |
commit | cc7e73f35dccba7503bdaf40bb5189225697664d (patch) | |
tree | b3fe835ad45ddc449fc2273be3c1aaae040751b5 /arch/x86/kernel/efi_32.c | |
parent | f1452d424dc0e079fb97af8cb8d3a0f7b5fddd46 (diff) | |
download | blackbird-op-linux-cc7e73f35dccba7503bdaf40bb5189225697664d.tar.gz blackbird-op-linux-cc7e73f35dccba7503bdaf40bb5189225697664d.zip |
x86: sparse error in efi_32.c
arch/x86/kernel/efi_32.c:42:6: warning: symbol 'efi_call_phys_prelog' was not declared. Should it be static?
arch/x86/kernel/efi_32.c:84:6: warning: symbol 'efi_call_phys_epilog' was not declared. Should it be static?
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/x86/kernel/efi_32.c')
-rw-r--r-- | arch/x86/kernel/efi_32.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86/kernel/efi_32.c b/arch/x86/kernel/efi_32.c index cb91f985b4a1..5d23d85624d4 100644 --- a/arch/x86/kernel/efi_32.c +++ b/arch/x86/kernel/efi_32.c @@ -28,6 +28,7 @@ #include <asm/page.h> #include <asm/pgtable.h> #include <asm/tlbflush.h> +#include <asm/efi.h> /* * To make EFI call EFI runtime service in physical addressing mode we need |