Re: [U-Boot] [PATCH v3 2/8] board_init_f_mem(): Don't require memset()

2015-10-18 Thread Albert ARIBAUD
Hello Simon, On Sun, 18 Oct 2015 14:38:06 -0600, Simon Glass wrote: > Hi Albert, > > On 18 October 2015 at 10:28, Albert ARIBAUD wrote: > > Hello Simon, > > > > On Sat, 17 Oct 2015 15:06:55 -0600, Simon Glass > > wrote: > >> Unfortunately memset() is not always available, so provide a substitu

Re: [U-Boot] [PATCH v3 2/8] board_init_f_mem(): Don't require memset()

2015-10-18 Thread Simon Glass
Hi Albert, On 18 October 2015 at 10:28, Albert ARIBAUD wrote: > Hello Simon, > > On Sat, 17 Oct 2015 15:06:55 -0600, Simon Glass > wrote: >> Unfortunately memset() is not always available, so provide a substitute when >> needed. >> >> Signed-off-by: Simon Glass >> --- >> >> Changes in v3: None

Re: [U-Boot] [PATCH v3 2/8] board_init_f_mem(): Don't require memset()

2015-10-18 Thread Albert ARIBAUD
Hello Simon, On Sat, 17 Oct 2015 15:06:55 -0600, Simon Glass wrote: > Unfortunately memset() is not always available, so provide a substitute when > needed. > > Signed-off-by: Simon Glass > --- > > Changes in v3: None > Changes in v2: > - Add comments as to why this is needed, deal with arch-s

[U-Boot] [PATCH v3 2/8] board_init_f_mem(): Don't require memset()

2015-10-17 Thread Simon Glass
Unfortunately memset() is not always available, so provide a substitute when needed. Signed-off-by: Simon Glass --- Changes in v3: None Changes in v2: - Add comments as to why this is needed, deal with arch-specific memset() common/init/board_init.c | 18 ++ 1 file changed, 18