diff options
Diffstat (limited to 'arch/arm/mm/nommu.c')
-rw-r--r-- | arch/arm/mm/nommu.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/arm/mm/nommu.c b/arch/arm/mm/nommu.c index eb5293a69a84..7fe0524a5449 100644 --- a/arch/arm/mm/nommu.c +++ b/arch/arm/mm/nommu.c | |||
@@ -87,16 +87,16 @@ void __iomem *__arm_ioremap_pfn_caller(unsigned long pfn, unsigned long offset, | |||
87 | return __arm_ioremap_pfn(pfn, offset, size, mtype); | 87 | return __arm_ioremap_pfn(pfn, offset, size, mtype); |
88 | } | 88 | } |
89 | 89 | ||
90 | void __iomem *__arm_ioremap(unsigned long phys_addr, size_t size, | 90 | void __iomem *__arm_ioremap(phys_addr_t phys_addr, size_t size, |
91 | unsigned int mtype) | 91 | unsigned int mtype) |
92 | { | 92 | { |
93 | return (void __iomem *)phys_addr; | 93 | return (void __iomem *)phys_addr; |
94 | } | 94 | } |
95 | EXPORT_SYMBOL(__arm_ioremap); | 95 | EXPORT_SYMBOL(__arm_ioremap); |
96 | 96 | ||
97 | void __iomem * (*arch_ioremap_caller)(unsigned long, size_t, unsigned int, void *); | 97 | void __iomem * (*arch_ioremap_caller)(phys_addr_t, size_t, unsigned int, void *); |
98 | 98 | ||
99 | void __iomem *__arm_ioremap_caller(unsigned long phys_addr, size_t size, | 99 | void __iomem *__arm_ioremap_caller(phys_addr_t phys_addr, size_t size, |
100 | unsigned int mtype, void *caller) | 100 | unsigned int mtype, void *caller) |
101 | { | 101 | { |
102 | return __arm_ioremap(phys_addr, size, mtype); | 102 | return __arm_ioremap(phys_addr, size, mtype); |