aboutsummaryrefslogtreecommitdiff
path: root/arch/arm/lib/_umodsi3.S
AgeCommit message (Collapse)AuthorFilesLines
2016-06-02arm: lib: Drop underscore from private libgcc filenamesMarek Vasut1-90/+0
Drop the underscore from the filenames of files implementing libgcc routines. There is no functional change. This change is done to make sync with Linux kernel easier. Signed-off-by: Marek Vasut <marex@denx.de> Cc: Albert Aribaud <albert.u.boot@aribaud.net> Cc: Masahiro Yamada <yamada.masahiro@socionext.com> Cc: Simon Glass <sjg@chromium.org> Cc: Tom Rini <trini@konsulko.com> Reviewed-by: Tom Rini <trini@konsulko.com>
2015-07-07arm: Add ENTRY/ENDPROC to private libgcc functionsSimon Glass1-2/+4
When CONFIG_SYS_THUMB_BUILD is defined these functions may be called from Thumb code. Add the required ENTRY and ENDPROC bracketing so that BLX is used to call these ARM functions, instead of plain BL, which will fail. Signed-off-by: Simon Glass <sjg@chromium.org> Reported-by: Pavel Machek <pavel@denx.de>
2010-04-13Move lib_$ARCH directories to arch/$ARCH/libPeter Tyser1-0/+88
Also move lib_$ARCH/config.mk to arch/$ARCH/config.mk This change is intended to clean up the top-level directory structure and more closely mimic Linux's directory organization. Signed-off-by: Peter Tyser <ptyser@xes-inc.com>