summaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorJeroen Hofstee <jeroen@myspectrum.nl>2014-07-30 21:54:53 +0200
committerAlbert ARIBAUD <albert.u.boot@aribaud.net>2014-09-09 13:51:11 +0200
commitf2cbb037a73bd91e99bbb2717e532a88929b2e12 (patch)
tree4c34441593594503ba257e8cf5b87b3c41e0d93f /arch
parentc65a2abb6c0a9ab1c70f5241716066c9480ce96a (diff)
downloadtalos-obmc-uboot-f2cbb037a73bd91e99bbb2717e532a88929b2e12.tar.gz
talos-obmc-uboot-f2cbb037a73bd91e99bbb2717e532a88929b2e12.zip
eabi_compat: add __aeabi_memcpy __aeabi_memset
cc: Albert ARIBAUD <albert.u.boot@aribaud.net> Signed-off-by: Jeroen Hofstee <jeroen@myspectrum.nl>
Diffstat (limited to 'arch')
-rw-r--r--arch/arm/lib/eabi_compat.c15
1 files changed, 13 insertions, 2 deletions
diff --git a/arch/arm/lib/eabi_compat.c b/arch/arm/lib/eabi_compat.c
index 10d19333fc..a2cb06e49a 100644
--- a/arch/arm/lib/eabi_compat.c
+++ b/arch/arm/lib/eabi_compat.c
@@ -20,8 +20,19 @@ int raise (int signum)
/* Dummy function to avoid linker complaints */
void __aeabi_unwind_cpp_pr0(void)
{
-};
+}
void __aeabi_unwind_cpp_pr1(void)
{
-};
+}
+
+/* Copy memory like memcpy, but no return value required. */
+void __aeabi_memcpy(void *dest, const void *src, size_t n)
+{
+ (void) memcpy(dest, src, n);
+}
+
+void __aeabi_memset(void *dest, size_t n, int c)
+{
+ (void) memset(dest, c, n);
+}
OpenPOWER on IntegriCloud