Re: [U-Boot] [PATCH v5 1/5] lib: add rand() function

2012-05-24 Thread Michael Walle
On Thu, May 24, 2012 06:32, Prafulla Wadaskar wrote: >> Hi Wolfgang, >> >> can you ack this patch? In that case i could add the acked-by line in >> the next >> version of this patch series to ease the picking by Prafulla. All your >> previous comments should be addressed :) >> >> >> > --- >> > inc

Re: [U-Boot] [PATCH v5 1/5] lib: add rand() function

2012-05-23 Thread Prafulla Wadaskar
> -Original Message- > From: Michael Walle [mailto:mich...@walle.cc] > Sent: 23 May 2012 22:05 > To: u-boot@lists.denx.de > Cc: Prafulla Wadaskar; Wolfgang Denk > Subject: Re: [PATCH v5 1/5] lib: add rand() function > > Am Samstag 12 Mai 2012, 00:50:45 schrieb Michael Walle: > > It's a P

Re: [U-Boot] [PATCH v5 1/5] lib: add rand() function

2012-05-23 Thread Michael Walle
Am Samstag 12 Mai 2012, 00:50:45 schrieb Michael Walle: > It's a PRNG using the simple and fast xorshift method. > > Signed-off-by: Michael Walle > Cc: Wolfgang Denk Hi Wolfgang, can you ack this patch? In that case i could add the acked-by line in the next version of this patch series to ea

[U-Boot] [PATCH v5 1/5] lib: add rand() function

2012-05-11 Thread Michael Walle
It's a PRNG using the simple and fast xorshift method. Signed-off-by: Michael Walle Cc: Wolfgang Denk --- include/common.h |6 ++ lib/Makefile |1 + lib/rand.c | 43 +++ 3 files changed, 50 insertions(+), 0 deletions(-) create mod