Skip to content

Commit

Permalink
[ARM] Shut up gcc warning in clps7500 core.c
Browse files Browse the repository at this point in the history
core.c:263: warning: initialization makes integer from pointer without a cast

Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
  • Loading branch information
Russell King authored and Russell King committed Nov 21, 2005
1 parent 2f3eca8 commit 9b73fcf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/arm/mach-clps7500/core.c
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ static void __init clps7500_init_irq(void)

static struct map_desc cl7500_io_desc[] __initdata = {
{ /* IO space */
.virtual = IO_BASE,
.virtual = (unsigned long)IO_BASE,
.pfn = __phys_to_pfn(IO_START),
.length = IO_SIZE,
.type = MT_DEVICE
Expand Down

0 comments on commit 9b73fcf

Please sign in to comment.