diff options
Diffstat (limited to 'arch/arm/include/asm/mach/map.h')
-rw-r--r-- | arch/arm/include/asm/mach/map.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/arch/arm/include/asm/mach/map.h b/arch/arm/include/asm/mach/map.h index 58cf91f38e6f..742c2aaeb020 100644 --- a/arch/arm/include/asm/mach/map.h +++ b/arch/arm/include/asm/mach/map.h | |||
@@ -30,6 +30,14 @@ struct map_desc { | |||
30 | 30 | ||
31 | #ifdef CONFIG_MMU | 31 | #ifdef CONFIG_MMU |
32 | extern void iotable_init(struct map_desc *, int); | 32 | extern void iotable_init(struct map_desc *, int); |
33 | |||
34 | struct mem_type; | ||
35 | extern const struct mem_type *get_mem_type(unsigned int type); | ||
36 | /* | ||
37 | * external interface to remap single page with appropriate type | ||
38 | */ | ||
39 | extern int ioremap_page(unsigned long virt, unsigned long phys, | ||
40 | const struct mem_type *mtype); | ||
33 | #else | 41 | #else |
34 | #define iotable_init(map,num) do { } while (0) | 42 | #define iotable_init(map,num) do { } while (0) |
35 | #endif | 43 | #endif |