Re: [U-Boot] [PATCH 2/2] board_init.c: Always use memset()

2017-01-20 Thread Simon Glass
Hi Tom, On 19 January 2017 at 07:25, Tom Rini wrote: > > On Thu, Jan 19, 2017 at 06:57:51AM -0700, Simon Glass wrote: > > On 12 January 2017 at 11:16, Tom Rini wrote: > > > We can make the code read more easily here by simply using memset() > > > always as when we don't have an optimized version

Re: [U-Boot] [PATCH 2/2] board_init.c: Always use memset()

2017-01-19 Thread Tom Rini
On Thu, Jan 19, 2017 at 06:57:51AM -0700, Simon Glass wrote: > On 12 January 2017 at 11:16, Tom Rini wrote: > > We can make the code read more easily here by simply using memset() > > always as when we don't have an optimized version of the function we > > will still have a version of this functio

Re: [U-Boot] [PATCH 2/2] board_init.c: Always use memset()

2017-01-19 Thread Simon Glass
On 12 January 2017 at 11:16, Tom Rini wrote: > We can make the code read more easily here by simply using memset() > always as when we don't have an optimized version of the function we > will still have a version of this function around anyhow. > > Cc: Simon Glass > Signed-off-by: Tom Rini > --

[U-Boot] [PATCH 2/2] board_init.c: Always use memset()

2017-01-12 Thread Tom Rini
We can make the code read more easily here by simply using memset() always as when we don't have an optimized version of the function we will still have a version of this function around anyhow. Cc: Simon Glass Signed-off-by: Tom Rini --- common/init/board_init.c | 18 -- 1 file