diff options
author | Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com> | 2009-02-13 11:14:01 -0800 |
---|---|---|
committer | Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com> | 2009-02-13 11:35:01 -0800 |
commit | 0341c14da49e7b93d2998926f6ac89a3129e3fa1 (patch) | |
tree | c8a6d0e5331667ba4becf83836053bd14dd39e44 /arch/x86/kernel/efi_stub_32.S | |
parent | beb6943d8df7ce9278282101af4e0f6f7b648451 (diff) | |
download | op-kernel-dev-0341c14da49e7b93d2998926f6ac89a3129e3fa1.zip op-kernel-dev-0341c14da49e7b93d2998926f6ac89a3129e3fa1.tar.gz |
x86: use _types.h headers in asm where available
In general, the only definitions that assembly files can use
are in _types.S headers (where available), so convert them.
Signed-off-by: Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>
Diffstat (limited to 'arch/x86/kernel/efi_stub_32.S')
-rw-r--r-- | arch/x86/kernel/efi_stub_32.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/efi_stub_32.S b/arch/x86/kernel/efi_stub_32.S index ef00bb7..8b9171b9c 100644 --- a/arch/x86/kernel/efi_stub_32.S +++ b/arch/x86/kernel/efi_stub_32.S @@ -6,7 +6,7 @@ */ #include <linux/linkage.h> -#include <asm/page.h> +#include <asm/page_types.h> /* * efi_call_phys(void *, ...) is a function with variable parameters. |