diff options
author | Huang, Ying <ying.huang@intel.com> | 2008-01-30 13:33:44 +0100 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-01-30 13:33:44 +0100 |
commit | 4716e79c9946044a53a65418cfba04836f6a5c36 (patch) | |
tree | b29941081f48496a08110351a67de11ca8f6be47 /include | |
parent | 0947b2f31ca1ea1211d3cde2dbd8fcec579ef395 (diff) | |
download | linux-3.10-4716e79c9946044a53a65418cfba04836f6a5c36.tar.gz linux-3.10-4716e79c9946044a53a65418cfba04836f6a5c36.tar.bz2 linux-3.10-4716e79c9946044a53a65418cfba04836f6a5c36.zip |
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 6d54502755a..10fcf20bdc7 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 *, ...); efi_call_virt(f, a1, a2, a3, a4, a5) #define efi_call_virt6(f, a1, a2, a3, a4, a5, a6) \ efi_call_virt(f, a1, a2, a3, a4, a5, a6) -/* - * We require an early boot_ioremap mapping mechanism initially - */ -extern void *boot_ioremap(unsigned long, unsigned long); -#define efi_early_ioremap(addr, size) boot_ioremap(addr, size) -#define efi_early_iounmap(vaddr, size) +#define efi_early_ioremap(addr, size) bt_ioremap(addr, size) +#define efi_early_iounmap(vaddr, size) bt_iounmap(vaddr, size) #define efi_ioremap(addr, size) ioremap(addr, size) |