Skip to content

Commit

Permalink
[POWERPC] 4xx: Fix offset value on Warp board
Browse files Browse the repository at this point in the history
While merging, I found a small bug that I forgot to send. I add an
offset to a value twice.

Signed-off-by: Sean MacLennan <smaclennan@pikatech.com>
Signed-off-by: Josh Boyer <jwboyer@linux.vnet.ibm.com>
  • Loading branch information
Sean MacLennan authored and Josh Boyer committed Feb 7, 2008
1 parent 3c0c6cb commit c41f4af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/powerpc/platforms/44x/warp.c
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ static int __init pika_dtm_start(void)
}
of_node_put(np);

fpga = ioremap(res.start + 0x20, 4);
fpga = ioremap(res.start, 0x24);
if (fpga == NULL)
return -ENOENT;

Expand Down

0 comments on commit c41f4af

Please sign in to comment.