From: Wolfgang Denk Date: Fri, 11 Sep 2009 09:28:21 +0000 (+0200) Subject: board/dave/common/flash.c: fix compile warning X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=5168801f4b71c2f8dcd92a80cfcfda84246e67fe;p=project%2Fbcm63xx%2Fu-boot.git board/dave/common/flash.c: fix compile warning Fix warning: ../common/flash.c:668: warning: dereferencing type-punned pointer will break strict-aliasing rules Signed-off-by: Wolfgang Denk Cc: Andrea Marson --- diff --git a/board/dave/common/flash.c b/board/dave/common/flash.c index b6af63b3b9..29caf47ef3 100644 --- a/board/dave/common/flash.c +++ b/board/dave/common/flash.c @@ -663,9 +663,10 @@ int write_buff (flash_info_t *info, uchar *src, ulong addr, ulong cnt) */ static int write_word (flash_info_t *info, ulong dest, ulong 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; + volatile CONFIG_SYS_FLASH_WORD_SIZE *data2 = (CONFIG_SYS_FLASH_WORD_SIZE *)data_ptr; ulong start; int flag; int i;