Re: [U-Boot] [PATCH V2 2/3] memset: fill one word at a time if possible

2009-10-08 Thread Wolfgang Denk
Dear Alessandro Rubini, In message you wrote: ... > void * memset(void * s,int c,size_t count) > { > char *xs = (char *) s; > - > + unsigned long *sl = (unsigned long *) s; > + unsigned long cl = 0; > + int i; Same changes as suggested for the memcpy() patch go here: > +

[U-Boot] [PATCH V2 2/3] memset: fill one word at a time if possible

2009-10-08 Thread Alessandro Rubini
From: Alessandro Rubini Signed-off-by: Alessandro Rubini Acked-by: Andrea Gallo --- lib_generic/string.c | 17 - 1 files changed, 16 insertions(+), 1 deletions(-) diff --git a/lib_generic/string.c b/lib_generic/string.c index 9911941..5f7aff9 100644 --- a/lib_generic/string.