Re: [U-Boot] [PATCH v2 09/23] Add stricmp() and strnicmp()

2012-12-01 Thread Simon Glass
Hi Scott, On Tue, Nov 27, 2012 at 2:12 PM, Scott Wood wrote: > On 11/22/2012 01:12:53 PM, Simon Glass wrote: >> >> strnicmp() is present but disabled. Make it available and define stricmp() >> also. There is a only a small performance penalty to having stricmp() >> call strnicmp(), so do this ins

Re: [U-Boot] [PATCH v2 09/23] Add stricmp() and strnicmp()

2012-11-27 Thread Scott Wood
On 11/22/2012 01:12:53 PM, Simon Glass wrote: strnicmp() is present but disabled. Make it available and define stricmp() also. There is a only a small performance penalty to having stricmp() call strnicmp(), so do this instead of a standalone function, to save code space. Both POSIX and th

[U-Boot] [PATCH v2 09/23] Add stricmp() and strnicmp()

2012-11-22 Thread Simon Glass
strnicmp() is present but disabled. Make it available and define stricmp() also. There is a only a small performance penalty to having stricmp() call strnicmp(), so do this instead of a standalone function, to save code space. Signed-off-by: Simon Glass --- Changes in v2: - Add stricmp() patch ag