diff options
author | Huang, Ying <ying.huang@intel.com> | 2008-01-30 07:33:44 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-01-30 07:33:44 -0500 |
commit | 4716e79c9946044a53a65418cfba04836f6a5c36 (patch) | |
tree | b29941081f48496a08110351a67de11ca8f6be47 /include | |
parent | 0947b2f31ca1ea1211d3cde2dbd8fcec579ef395 (diff) |
x86: replace boot_ioremap() with enhanced bt_ioremap() - remove boot_ioremap()
This patch replaces boot_ioremap invokation with bt_ioremap and
removes the boot_ioremap implementation.
Signed-off-by: Huang Ying <ying.huang@intel.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'include')
-rw-r--r-- | include/asm-x86/efi.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/include/asm-x86/efi.h b/include/asm-x86/efi.h index 6d54502755aa..10fcf20bdc73 100644 --- a/include/asm-x86/efi.h +++ b/include/asm-x86/efi.h | |||
@@ -32,13 +32,9 @@ extern unsigned long asmlinkage efi_call_phys(void *, ...); | |||
32 | efi_call_virt(f, a1, a2, a3, a4, a5) | 32 | efi_call_virt(f, a1, a2, a3, a4, a5) |
33 | #define efi_call_virt6(f, a1, a2, a3, a4, a5, a6) \ | 33 | #define efi_call_virt6(f, a1, a2, a3, a4, a5, a6) \ |
34 | efi_call_virt(f, a1, a2, a3, a4, a5, a6) | 34 | efi_call_virt(f, a1, a2, a3, a4, a5, a6) |
35 | /* | ||
36 | * We require an early boot_ioremap mapping mechanism initially | ||
37 | */ | ||
38 | extern void *boot_ioremap(unsigned long, unsigned long); | ||
39 | 35 | ||
40 | #define efi_early_ioremap(addr, size) boot_ioremap(addr, size) | 36 | #define efi_early_ioremap(addr, size) bt_ioremap(addr, size) |
41 | #define efi_early_iounmap(vaddr, size) | 37 | #define efi_early_iounmap(vaddr, size) bt_iounmap(vaddr, size) |
42 | 38 | ||
43 | #define efi_ioremap(addr, size) ioremap(addr, size) | 39 | #define efi_ioremap(addr, size) ioremap(addr, size) |
44 | 40 | ||