summaryrefslogtreecommitdiffstats
path: root/board/amcc
diff options
context:
space:
mode:
authorWolfgang Denk <wd@denx.de>2009-09-11 11:30:34 +0200
committerWolfgang Denk <wd@denx.de>2009-09-15 00:29:49 +0200
commit6c7bc91fb3dba186d3398a1653f6db236510ffa7 (patch)
tree695eb6bb25e0c518da216ad45165d4ddcb64bf1d /board/amcc
parent70fb809c563c340538264d2a9436135e74c38bfe (diff)
downloadblackbird-obmc-uboot-6c7bc91fb3dba186d3398a1653f6db236510ffa7.tar.gz
blackbird-obmc-uboot-6c7bc91fb3dba186d3398a1653f6db236510ffa7.zip
board/amcc/common/flash.c: Fix compile warning
Fix warning: ../common/flash.c:917: warning: dereferencing type-punned pointer will break strict-aliasing rules Signed-off-by: Wolfgang Denk <wd@denx.de> Cc: Stefan Roese <sr@denx.de> Acked-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'board/amcc')
-rw-r--r--board/amcc/common/flash.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/board/amcc/common/flash.c b/board/amcc/common/flash.c
index 9943c744b7..9aaf256c22 100644
--- a/board/amcc/common/flash.c
+++ b/board/amcc/common/flash.c
@@ -912,9 +912,10 @@ static int flash_erase_2(flash_info_t * info, int s_first, int s_last)
static int write_word_2(flash_info_t * info, ulong dest, ulong data)
{
- volatile CONFIG_SYS_FLASH_WORD_SIZE *addr2 = (CONFIG_SYS_FLASH_WORD_SIZE *) (info->start[0]);
- volatile CONFIG_SYS_FLASH_WORD_SIZE *dest2 = (CONFIG_SYS_FLASH_WORD_SIZE *) dest;
- volatile CONFIG_SYS_FLASH_WORD_SIZE *data2 = (CONFIG_SYS_FLASH_WORD_SIZE *) & data;
+ ulong *data_ptr = &data;
+ volatile CONFIG_SYS_FLASH_WORD_SIZE *addr2 = (CONFIG_SYS_FLASH_WORD_SIZE *)(info->start[0]);
+ volatile CONFIG_SYS_FLASH_WORD_SIZE *dest2 = (CONFIG_SYS_FLASH_WORD_SIZE *)dest;
+ volatile CONFIG_SYS_FLASH_WORD_SIZE *data2 = (CONFIG_SYS_FLASH_WORD_SIZE *)data_ptr;
ulong start;
int i;
OpenPOWER on IntegriCloud