Re: [U-Boot] [PATCH 02/10] board_init_f_mem(): Don't require memset()

2015-04-24 Thread Simon Glass
Hi Masahiro, On 20 April 2015 at 22:30, Masahiro Yamada wrote: > 2015-04-21 12:47 GMT+09:00 Simon Glass : >> Hi Masahiro, >> >> On 20 April 2015 at 21:42, Masahiro Yamada >> wrote: >>> Hi Simon, >>> >>> >>> >>> 2015-04-16 10:14 GMT+09:00 Simon Glass : Unfortunately memset() is not always av

Re: [U-Boot] [PATCH 02/10] board_init_f_mem(): Don't require memset()

2015-04-20 Thread Masahiro Yamada
2015-04-21 12:47 GMT+09:00 Simon Glass : > Hi Masahiro, > > On 20 April 2015 at 21:42, Masahiro Yamada > wrote: >> Hi Simon, >> >> >> >> 2015-04-16 10:14 GMT+09:00 Simon Glass : >>> Unfortunately memset() is not always available, so provide a substitute when >>> needed. >>> >>> Signed-off-by: Simo

Re: [U-Boot] [PATCH 02/10] board_init_f_mem(): Don't require memset()

2015-04-20 Thread Simon Glass
Hi Masahiro, On 20 April 2015 at 21:42, Masahiro Yamada wrote: > Hi Simon, > > > > 2015-04-16 10:14 GMT+09:00 Simon Glass : >> Unfortunately memset() is not always available, so provide a substitute when >> needed. >> >> Signed-off-by: Simon Glass >> --- >> >> common/init/global_data.c | 8

Re: [U-Boot] [PATCH 02/10] board_init_f_mem(): Don't require memset()

2015-04-20 Thread Masahiro Yamada
Hi Simon, 2015-04-16 10:14 GMT+09:00 Simon Glass : > Unfortunately memset() is not always available, so provide a substitute when > needed. > > Signed-off-by: Simon Glass > --- > > common/init/global_data.c | 8 > 1 file changed, 8 insertions(+) > > diff --git a/common/init/global_dat

Re: [U-Boot] [PATCH 02/10] board_init_f_mem(): Don't require memset()

2015-04-19 Thread Simon Glass
Hi Wolfgang, On 15 April 2015 at 22:25, Wolfgang Denk wrote: > Dear Simon Glass, > > In message <1429146849-11994-3-git-send-email-...@chromium.org> you wrote: >> Unfortunately memset() is not always available, so provide a substitute when >> needed. > >> +#if !defined(CONFIG_SPL_BUILD) || define

Re: [U-Boot] [PATCH 02/10] board_init_f_mem(): Don't require memset()

2015-04-15 Thread Wolfgang Denk
Dear Simon Glass, In message <1429146849-11994-3-git-send-email-...@chromium.org> you wrote: > Unfortunately memset() is not always available, so provide a substitute when > needed. > +#if !defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_LIBGENERIC_SUPPORT) > memset((void *)gd, '\0', sizeof

[U-Boot] [PATCH 02/10] board_init_f_mem(): Don't require memset()

2015-04-15 Thread Simon Glass
Unfortunately memset() is not always available, so provide a substitute when needed. Signed-off-by: Simon Glass --- common/init/global_data.c | 8 1 file changed, 8 insertions(+) diff --git a/common/init/global_data.c b/common/init/global_data.c index 2633f0d..ef055c4 100644 --- a/com