diff options
author | Olof Johansson <olof@lixom.net> | 2012-09-22 13:24:06 -0400 |
---|---|---|
committer | Olof Johansson <olof@lixom.net> | 2012-09-22 13:24:29 -0400 |
commit | 268aebe4d04bf2ac1e839eff2c83519768460189 (patch) | |
tree | b456d91c8e495e0fb0aa84bd8708bed62b1e8dc4 /arch/arm/mach-imx/mach-kzm_arm11_01.c | |
parent | 60e59920152c7bafc8a2eb3031a62f22c2bc9e95 (diff) | |
parent | a019c5e25190107a88377cde8918c169d15a7add (diff) |
Merge branch 'cleanup/__iomem' into next/cleanup
__iomem annotation cleanup branch from Arnd.
* cleanup/__iomem: (21 commits)
net: seeq: use __iomem pointers for MMIO
video: da8xx-fb: use __iomem pointers for MMIO
scsi: eesox: use __iomem pointers for MMIO
serial: ks8695: use __iomem pointers for MMIO
input: rpcmouse: use __iomem pointers for MMIO
ARM: samsung: use __iomem pointers for MMIO
ARM: spear13xx: use __iomem pointers for MMIO
ARM: sa1100: use __iomem pointers for MMIO
ARM: prima2: use __iomem pointers for MMIO
ARM: nomadik: use __iomem pointers for MMIO
ARM: msm: use __iomem pointers for MMIO
ARM: lpc32xx: use __iomem pointers for MMIO
ARM: ks8695: use __iomem pointers for MMIO
ARM: ixp4xx: use __iomem pointers for MMIO
ARM: iop32x: use __iomem pointers for MMIO
ARM: iop13xx: use __iomem pointers for MMIO
ARM: integrator: use __iomem pointers for MMIO
ARM: imx: use __iomem pointers for MMIO
ARM: ebsa110: use __iomem pointers for MMIO
ARM: at91: use __iomem pointers for MMIO
...
Signed-off-by: Olof Johansson <olof@lixom.net>
Diffstat (limited to 'arch/arm/mach-imx/mach-kzm_arm11_01.c')
-rw-r--r-- | arch/arm/mach-imx/mach-kzm_arm11_01.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-imx/mach-kzm_arm11_01.c b/arch/arm/mach-imx/mach-kzm_arm11_01.c index 8dc9d3edf17a..0330078ff788 100644 --- a/arch/arm/mach-imx/mach-kzm_arm11_01.c +++ b/arch/arm/mach-imx/mach-kzm_arm11_01.c | |||
@@ -258,13 +258,13 @@ static void __init kzm_board_init(void) | |||
258 | */ | 258 | */ |
259 | static struct map_desc kzm_io_desc[] __initdata = { | 259 | static struct map_desc kzm_io_desc[] __initdata = { |
260 | { | 260 | { |
261 | .virtual = MX31_CS4_BASE_ADDR_VIRT, | 261 | .virtual = (unsigned long)MX31_CS4_BASE_ADDR_VIRT, |
262 | .pfn = __phys_to_pfn(MX31_CS4_BASE_ADDR), | 262 | .pfn = __phys_to_pfn(MX31_CS4_BASE_ADDR), |
263 | .length = MX31_CS4_SIZE, | 263 | .length = MX31_CS4_SIZE, |
264 | .type = MT_DEVICE | 264 | .type = MT_DEVICE |
265 | }, | 265 | }, |
266 | { | 266 | { |
267 | .virtual = MX31_CS5_BASE_ADDR_VIRT, | 267 | .virtual = (unsigned long)MX31_CS5_BASE_ADDR_VIRT, |
268 | .pfn = __phys_to_pfn(MX31_CS5_BASE_ADDR), | 268 | .pfn = __phys_to_pfn(MX31_CS5_BASE_ADDR), |
269 | .length = MX31_CS5_SIZE, | 269 | .length = MX31_CS5_SIZE, |
270 | .type = MT_DEVICE | 270 | .type = MT_DEVICE |