Commit message (Collapse) | Author | Age | Lines | |
---|---|---|---|---|
* | Add strcasecmp() and strncasecmp() | Simon Glass | 2012-12-11 | -1/+1 |
| | | | | | | | | | | | strncasecmp() is present as strnicmp() but disabled. Make it available and define strcasecmp() also. There is a only a small performance penalty to having strcasecmp() call strncasecmp(), so do this instead of a standalone function, to save code space. Update the prototype in arch-specific headers as needed to avoid warnings. Signed-off-by: Simon Glass <sjg@chromium.org> | |||
* | Move architecture-specific includes to arch/$ARCH/include/asm | Peter Tyser | 2010-04-13 | -0/+31 |
This helps to clean up the include/ directory so that it only contains non-architecture-specific headers and also matches Linux's directory layout which many U-Boot developers are already familiar with. Signed-off-by: Peter Tyser <ptyser@xes-inc.com> |