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 | beacfaac3f23b30814aafee37a055257c7062ef3 (patch) | |
tree | 9a9a25cafa5fa4b79026caa8b0b442dc54b78889 /arch/x86/kernel/efi_32.c | |
parent | 4716e79c9946044a53a65418cfba04836f6a5c36 (diff) |
x86 32-bit boot: rename bt_ioremap() to early_ioremap()
This patch renames bt_ioremap to early_ioremap, which is used in
x86_64. This makes it easier to merge i386 and x86_64 usage.
[ mingo@elte.hu: fix ]
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 'arch/x86/kernel/efi_32.c')
-rw-r--r-- | arch/x86/kernel/efi_32.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/efi_32.c b/arch/x86/kernel/efi_32.c index afd2c3b039d6..114b896d7573 100644 --- a/arch/x86/kernel/efi_32.c +++ b/arch/x86/kernel/efi_32.c | |||
@@ -117,7 +117,7 @@ void __init efi_map_memmap(void) | |||
117 | { | 117 | { |
118 | memmap.map = NULL; | 118 | memmap.map = NULL; |
119 | 119 | ||
120 | memmap.map = bt_ioremap((unsigned long) memmap.phys_map, | 120 | memmap.map = early_ioremap((unsigned long) memmap.phys_map, |
121 | (memmap.nr_map * memmap.desc_size)); | 121 | (memmap.nr_map * memmap.desc_size)); |
122 | if (memmap.map == NULL) | 122 | if (memmap.map == NULL) |
123 | printk(KERN_ERR "Could not remap the EFI memmap!\n"); | 123 | printk(KERN_ERR "Could not remap the EFI memmap!\n"); |