diff options
Diffstat (limited to 'include/asm-x86/io_32.h')
-rw-r--r-- | include/asm-x86/io_32.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/include/asm-x86/io_32.h b/include/asm-x86/io_32.h index f7b733d9ace9..059a1fee4de3 100644 --- a/include/asm-x86/io_32.h +++ b/include/asm-x86/io_32.h | |||
@@ -135,20 +135,20 @@ static inline void __iomem * ioremap(unsigned long offset, unsigned long size) | |||
135 | extern void iounmap(volatile void __iomem *addr); | 135 | extern void iounmap(volatile void __iomem *addr); |
136 | 136 | ||
137 | /* | 137 | /* |
138 | * bt_ioremap() and bt_iounmap() are for temporary early boot-time | 138 | * early_ioremap() and early_iounmap() are for temporary early boot-time |
139 | * mappings, before the real ioremap() is functional. | 139 | * mappings, before the real ioremap() is functional. |
140 | * A boot-time mapping is currently limited to at most 16 pages. | 140 | * A boot-time mapping is currently limited to at most 16 pages. |
141 | */ | 141 | */ |
142 | extern void bt_ioremap_init(void); | 142 | extern void early_ioremap_init(void); |
143 | extern void bt_ioremap_clear(void); | 143 | extern void early_ioremap_clear(void); |
144 | extern void bt_ioremap_reset(void); | 144 | extern void early_ioremap_reset(void); |
145 | extern void *bt_ioremap(unsigned long offset, unsigned long size); | 145 | extern void *early_ioremap(unsigned long offset, unsigned long size); |
146 | extern void bt_iounmap(void *addr, unsigned long size); | 146 | extern void early_iounmap(void *addr, unsigned long size); |
147 | extern void __iomem *fix_ioremap(unsigned idx, unsigned long phys); | 147 | extern void __iomem *fix_ioremap(unsigned idx, unsigned long phys); |
148 | 148 | ||
149 | /* Use early IO mappings for DMI because it's initialized early */ | 149 | /* Use early IO mappings for DMI because it's initialized early */ |
150 | #define dmi_ioremap bt_ioremap | 150 | #define dmi_ioremap early_ioremap |
151 | #define dmi_iounmap bt_iounmap | 151 | #define dmi_iounmap early_iounmap |
152 | #define dmi_alloc alloc_bootmem | 152 | #define dmi_alloc alloc_bootmem |
153 | 153 | ||
154 | /* | 154 | /* |