Re: [U-Boot] [PATCH] board/esd/common/flash.c: Fix compile warning

2009-09-14 Thread Wolfgang Denk
In message <1252660703-15596-6-git-send-email...@denx.de> you wrote:
> Fix warning: ../common/flash.c:635: warning: dereferencing type-punned
> pointer will break strict-aliasing rules
> 
> Signed-off-by: Wolfgang Denk 
> Cc: Matthias Fuchs 
> Cc: Stefan Roese 
> ---
>  board/esd/common/flash.c |3 ++-
>  1 files changed, 2 insertions(+), 1 deletions(-)

Applied.

Wolfgang Denk

-- 
DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: w...@denx.de
Operating-system software is the program that  orchestrates  all  the
basic functions of a computer.
- The Wall Street Journal, Tuesday, September 15, 1987, page 40
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [PATCH] board/esd/common/flash.c: Fix compile warning

2009-09-11 Thread Stefan Roese
On Friday 11 September 2009 11:18:22 Wolfgang Denk wrote:
> Fix warning: ../common/flash.c:635: warning: dereferencing type-punned
> pointer will break strict-aliasing rules
> 
> Signed-off-by: Wolfgang Denk 
> Cc: Matthias Fuchs 
> Cc: Stefan Roese 

Acked-by: Stefan Roese 

Thanks.

Cheers,
Stefan

--
DENX Software Engineering GmbH,  MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich,  Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-0 Fax: (+49)-8142-66989-80 Email: off...@denx.de
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [PATCH] board/esd/common/flash.c: Fix compile warning

2009-09-11 Thread Matthias Fuchs
Acked-by: Matthias Fuchs 

On Friday 11 September 2009 11:18, Wolfgang Denk wrote:
> Fix warning: ../common/flash.c:635: warning: dereferencing type-punned
> pointer will break strict-aliasing rules
> 
> Signed-off-by: Wolfgang Denk 
> Cc: Matthias Fuchs 
> Cc: Stefan Roese 
> ---
>  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 3ea053b..38a58fb 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;
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


[U-Boot] [PATCH] board/esd/common/flash.c: Fix compile warning

2009-09-11 Thread Wolfgang Denk
Fix warning: ../common/flash.c:635: warning: dereferencing type-punned
pointer will break strict-aliasing rules

Signed-off-by: Wolfgang Denk 
Cc: Matthias Fuchs 
Cc: Stefan Roese 
---
 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 3ea053b..38a58fb 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;
-- 
1.6.0.6

___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot