diff options
author | Aaro Koskinen <aaro.koskinen@nokia.com> | 2010-11-18 12:59:50 -0500 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2010-11-24 19:48:59 -0500 |
commit | 7489ffcea62e0b990d3557746d19a47e83e07042 (patch) | |
tree | 447916503f54aa1a529d5d31a280921fc5f27dc5 /arch/arm/mach-omap1/board-ams-delta.c | |
parent | 87aedfe25a754a3ab49a7cfdb8f81bc882bc34fa (diff) |
arm: omap1: board-ams-delta: fix cast
Use IOMEM() macro to get rid of the following sparse warning:
arch/arm/mach-omap1/board-ams-delta.c:319:36: warning: incorrect type in initializer (different address spaces)
arch/arm/mach-omap1/board-ams-delta.c:319:36: expected void [noderef] <asn:2>*membase
arch/arm/mach-omap1/board-ams-delta.c:319:36: got void *<noident>
Signed-off-by: Aaro Koskinen <aaro.koskinen@nokia.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/mach-omap1/board-ams-delta.c')
-rw-r--r-- | arch/arm/mach-omap1/board-ams-delta.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/arm/mach-omap1/board-ams-delta.c b/arch/arm/mach-omap1/board-ams-delta.c index 1d4163b9f0b7..1948cd3ee500 100644 --- a/arch/arm/mach-omap1/board-ams-delta.c +++ b/arch/arm/mach-omap1/board-ams-delta.c | |||
@@ -28,6 +28,7 @@ | |||
28 | #include <asm/mach/arch.h> | 28 | #include <asm/mach/arch.h> |
29 | #include <asm/mach/map.h> | 29 | #include <asm/mach/map.h> |
30 | 30 | ||
31 | #include <plat/io.h> | ||
31 | #include <plat/board-ams-delta.h> | 32 | #include <plat/board-ams-delta.h> |
32 | #include <mach/gpio.h> | 33 | #include <mach/gpio.h> |
33 | #include <plat/keypad.h> | 34 | #include <plat/keypad.h> |
@@ -316,7 +317,7 @@ static void __init ams_delta_init(void) | |||
316 | 317 | ||
317 | static struct plat_serial8250_port ams_delta_modem_ports[] = { | 318 | static struct plat_serial8250_port ams_delta_modem_ports[] = { |
318 | { | 319 | { |
319 | .membase = (void *) AMS_DELTA_MODEM_VIRT, | 320 | .membase = IOMEM(AMS_DELTA_MODEM_VIRT), |
320 | .mapbase = AMS_DELTA_MODEM_PHYS, | 321 | .mapbase = AMS_DELTA_MODEM_PHYS, |
321 | .irq = -EINVAL, /* changed later */ | 322 | .irq = -EINVAL, /* changed later */ |
322 | .flags = UPF_BOOT_AUTOCONF, | 323 | .flags = UPF_BOOT_AUTOCONF, |