diff options
Diffstat (limited to 'arch/x86/kernel/traps_32.c')
-rw-r--r-- | arch/x86/kernel/traps_32.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/kernel/traps_32.c b/arch/x86/kernel/traps_32.c index 8534cb53ff60..3cf72977d012 100644 --- a/arch/x86/kernel/traps_32.c +++ b/arch/x86/kernel/traps_32.c | |||
@@ -1142,11 +1142,11 @@ void __init trap_init(void) | |||
1142 | int i; | 1142 | int i; |
1143 | 1143 | ||
1144 | #ifdef CONFIG_EISA | 1144 | #ifdef CONFIG_EISA |
1145 | void __iomem *p = ioremap(0x0FFFD9, 4); | 1145 | void __iomem *p = early_ioremap(0x0FFFD9, 4); |
1146 | if (readl(p) == 'E'+('I'<<8)+('S'<<16)+('A'<<24)) { | 1146 | if (readl(p) == 'E'+('I'<<8)+('S'<<16)+('A'<<24)) { |
1147 | EISA_bus = 1; | 1147 | EISA_bus = 1; |
1148 | } | 1148 | } |
1149 | iounmap(p); | 1149 | early_iounmap(p, 4); |
1150 | #endif | 1150 | #endif |
1151 | 1151 | ||
1152 | #ifdef CONFIG_X86_LOCAL_APIC | 1152 | #ifdef CONFIG_X86_LOCAL_APIC |