diff options
| author | Wolfgang Denk <[email protected]> | 2009-09-11 10:13:26 +0200 |
|---|---|---|
| committer | Tom Rix <[email protected]> | 2009-10-03 09:04:24 -0500 |
| commit | 85d4bb0e99c032c359adf35e74315a4ff9999069 (patch) | |
| tree | 59f00a2713695bbff4ce01799587162859b07db8 | |
| parent | cfdd4a8918489b9368dd62431d1cb81eef52da28 (diff) | |
board/esd/common/flash.c: Fix compile warning
Fix warning: ../common/flash.c:635: warning: dereferencing type-punned
pointer will break strict-aliasing rules
Signed-off-by: Wolfgang Denk <[email protected]>
Cc: Matthias Fuchs <[email protected]>
Cc: Stefan Roese <[email protected]>
Acked-by: Matthias Fuchs <[email protected]>
Acked-by: Stefan Roese <[email protected]>
| -rw-r--r-- | board/esd/common/flash.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/board/esd/common/flash.c b/board/esd/common/flash.c index 3ea053b8cc4..38a58fb5e2d 100644 --- a/board/esd/common/flash.c +++ b/board/esd/common/flash.c @@ -630,9 +630,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; |
