diff options
author | Paul Gortmaker <paul.gortmaker@windriver.com> | 2011-05-27 14:46:07 -0400 |
---|---|---|
committer | Paul Gortmaker <paul.gortmaker@windriver.com> | 2011-10-31 19:30:36 -0400 |
commit | 783ac47c2aad07ff68f9432968d2f0829ef81543 (patch) | |
tree | 409b4c17f04740ad17026156f03a4a8c5481dd1e /arch/x86 | |
parent | 7c52d55170ce84ddf9c0ad4e020ef1d7a97975a7 (diff) | |
download | op-kernel-dev-783ac47c2aad07ff68f9432968d2f0829ef81543.zip op-kernel-dev-783ac47c2aad07ff68f9432968d2f0829ef81543.tar.gz |
x86: efi_32.c is implicitly getting asm/desc.h via module.h
We want to clean up the chain of includes stumbling through
module.h, and when we do that, we'll see:
CC arch/x86/platform/efi/efi_32.o
efi/efi_32.c: In function ‘efi_call_phys_prelog’:
efi/efi_32.c:80: error: implicit declaration of function ‘get_cpu_gdt_table’
efi/efi_32.c:82: error: implicit declaration of function ‘load_gdt’
make[4]: *** [arch/x86/platform/efi/efi_32.o] Error 1
Include asm/desc.h so that there are no implicit include assumptions.
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Diffstat (limited to 'arch/x86')
-rw-r--r-- | arch/x86/platform/efi/efi_32.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86/platform/efi/efi_32.c b/arch/x86/platform/efi/efi_32.c index 5cab48e..e36bf71 100644 --- a/arch/x86/platform/efi/efi_32.c +++ b/arch/x86/platform/efi/efi_32.c @@ -25,6 +25,7 @@ #include <linux/efi.h> #include <asm/io.h> +#include <asm/desc.h> #include <asm/page.h> #include <asm/pgtable.h> #include <asm/tlbflush.h> |