[U-Boot-Users] [PATCH] 8641hpcn: Do correct sized pointer math.

When I rebased Ed's patch and cleaned up a few compilation problems, I apparently rebased my brain on crack first. Fix that by doing (char *) sized pointer math as needed.
Signed-off-by: Jon Loeliger jdl@freescale.com --- board/mpc8641hpcn/mpc8641hpcn.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/board/mpc8641hpcn/mpc8641hpcn.c b/board/mpc8641hpcn/mpc8641hpcn.c index d2182ab..bdb834b 100644 --- a/board/mpc8641hpcn/mpc8641hpcn.c +++ b/board/mpc8641hpcn/mpc8641hpcn.c @@ -268,8 +268,8 @@ void pci_init_board(void) * Activate ULI1575 legacy chip by performing a fake * memory access. Needed to make ULI RTC work. */ - in_be32((unsigned *) CFG_PCI1_MEM_BASE - + CFG_PCI1_MEM_SIZE - 0x1000000); + in_be32((unsigned *) ((char *)(CFG_PCI1_MEM_BASE + + CFG_PCI1_MEM_SIZE - 0x1000000));
} else { puts("PCI-EXPRESS 1: Disabled\n");

Jon,
in message 1186440102.5970.49.camel@ld0161-tx32 you wrote:
When I rebased Ed's patch and cleaned up a few compilation problems, I apparently rebased my brain on crack first. Fix that by doing (char *) sized pointer math as needed.
Signed-off-by: Jon Loeliger jdl@freescale.com
Will you add this to the 86xx repo and send a pull request later, or do you want me to pick this up directly?
Best regards,
Wolfgang Denk

On Thu, 2007-08-09 at 16:01, Wolfgang Denk wrote:
Jon,
in message 1186440102.5970.49.camel@ld0161-tx32 you wrote:
When I rebased Ed's patch and cleaned up a few compilation problems, I apparently rebased my brain on crack first. Fix that by doing (char *) sized pointer math as needed.
Signed-off-by: Jon Loeliger jdl@freescale.com
Will you add this to the 86xx repo and send a pull request later, or do you want me to pick this up directly?
I plan on adding it to the 8641 repo and having you pull it all!
I will also add Joe's SBC8641 patch there first.
I have just pushed out an updated -mpc86xx repo that has the former, and needs the latter still.
Thanks, jdl
participants (2)
-
Jon Loeliger
-
Wolfgang Denk