diff options
author | Russell King <rmk@dyn-67.arm.linux.org.uk> | 2005-11-21 12:03:15 -0500 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2005-11-21 12:03:15 -0500 |
commit | 9b73fcf85f65a301107c89e05227cd6fd6965680 (patch) | |
tree | 89ad3fcbe4866e6b3ec6cc9a4c53933a1f54473e /arch/arm/mach-clps7500/core.c | |
parent | 2f3eca8b4f1e9ff3c712519170f5c070ddbddff9 (diff) |
[ARM] Shut up gcc warning in clps7500 core.c
core.c:263: warning: initialization makes integer from pointer without a cast
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mach-clps7500/core.c')
-rw-r--r-- | arch/arm/mach-clps7500/core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-clps7500/core.c b/arch/arm/mach-clps7500/core.c index 0364ba4b539e..d869af0023f8 100644 --- a/arch/arm/mach-clps7500/core.c +++ b/arch/arm/mach-clps7500/core.c | |||
@@ -260,7 +260,7 @@ static void __init clps7500_init_irq(void) | |||
260 | 260 | ||
261 | static struct map_desc cl7500_io_desc[] __initdata = { | 261 | static struct map_desc cl7500_io_desc[] __initdata = { |
262 | { /* IO space */ | 262 | { /* IO space */ |
263 | .virtual = IO_BASE, | 263 | .virtual = (unsigned long)IO_BASE, |
264 | .pfn = __phys_to_pfn(IO_START), | 264 | .pfn = __phys_to_pfn(IO_START), |
265 | .length = IO_SIZE, | 265 | .length = IO_SIZE, |
266 | .type = MT_DEVICE | 266 | .type = MT_DEVICE |